[DOCS] Fix a few spelling mistakes in libs (#79761)

Signed-off-by: ewlumpkin <ewlumpkin@gmail.com>
This commit is contained in:
Eddie Lumpkin 2021-10-27 09:09:29 -05:00 committed by GitHub
parent 4fdbadb79f
commit ec059528ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View file

@ -98,7 +98,7 @@ public final class DissectKey {
/** /**
* Copy constructor to explicitly override the modifier. * Copy constructor to explicitly override the modifier.
* @param key The key to copy (except for the modifier) * @param key The key to copy (except for the modifier)
* @param modifier the modifer to use for this copy * @param modifier the modifier to use for this copy
*/ */
DissectKey(DissectKey key, DissectKey.Modifier modifier){ DissectKey(DissectKey key, DissectKey.Modifier modifier){
this.modifier = modifier; this.modifier = modifier;

View file

@ -93,7 +93,7 @@ final class DissectMatch {
} }
/** /**
* Gets all the current matches. Pass the results of this to isValid to determine if a fully successful match has occured. * Gets all the current matches. Pass the results of this to isValid to determine if a fully successful match has occurred.
* *
* @return the map of the results. * @return the map of the results.
*/ */

View file

@ -267,7 +267,7 @@ public class ESLZ4Tests extends AbstractLZ4TestCase {
} }
public void testNullMatchDec() { public void testNullMatchDec() {
// 1 literal, 4 matchs with matchDec=0, 8 literals // 1 literal, 4 matches with matchDec=0, 8 literals
final byte[] invalid = new byte[] { 16, 42, 0, 0, (byte) 128, 42, 42, 42, 42, 42, 42, 42, 42 }; final byte[] invalid = new byte[] { 16, 42, 0, 0, (byte) 128, 42, 42, 42, 42, 42, 42, 42, 42 };
// decompression should neither throw an exception nor loop indefinitely // decompression should neither throw an exception nor loop indefinitely
for (LZ4FastDecompressor decompressor : FAST_DECOMPRESSORS) { for (LZ4FastDecompressor decompressor : FAST_DECOMPRESSORS) {
@ -279,7 +279,7 @@ public class ESLZ4Tests extends AbstractLZ4TestCase {
} }
public void testEndsWithMatch() { public void testEndsWithMatch() {
// 6 literals, 4 matchs // 6 literals, 4 matches
final byte[] invalid = new byte[] { 96, 42, 43, 44, 45, 46, 47, 5, 0 }; final byte[] invalid = new byte[] { 96, 42, 43, 44, 45, 46, 47, 5, 0 };
final int decompressedLength = 10; final int decompressedLength = 10;
@ -305,7 +305,7 @@ public class ESLZ4Tests extends AbstractLZ4TestCase {
} }
public void testEndsWithLessThan5Literals() { public void testEndsWithLessThan5Literals() {
// 6 literals, 4 matchs // 6 literals, 4 matches
final byte[] invalidBase = new byte[] { 96, 42, 43, 44, 45, 46, 47, 5, 0 }; final byte[] invalidBase = new byte[] { 96, 42, 43, 44, 45, 46, 47, 5, 0 };
for (int i = 1; i < 5; ++i) { for (int i = 1; i < 5; ++i) {

View file

@ -102,7 +102,7 @@ public class SslConfigurationKeys {
public static final String KEYSTORE_TYPE = "keystore.type"; public static final String KEYSTORE_TYPE = "keystore.type";
/** /**
* The {@link javax.net.ssl.KeyManagerFactory#getAlgorithm() key management algorithm} to use when * The {@link javax.net.ssl.KeyManagerFactory#getAlgorithm() key management algorithm} to use when
* connstructing a Key manager from a {@link #KEYSTORE_PATH keystore}. * constructing a Key manager from a {@link #KEYSTORE_PATH keystore}.
*/ */
public static final String KEYSTORE_ALGORITHM = "keystore.algorithm"; public static final String KEYSTORE_ALGORITHM = "keystore.algorithm";
// -- PEM // -- PEM