mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 09:28:55 -04:00
[DOCS] Fix a few spelling mistakes in libs (#79761)
Signed-off-by: ewlumpkin <ewlumpkin@gmail.com>
This commit is contained in:
parent
4fdbadb79f
commit
ec059528ec
4 changed files with 6 additions and 6 deletions
|
@ -98,7 +98,7 @@ public final class DissectKey {
|
|||
/**
|
||||
* Copy constructor to explicitly override 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){
|
||||
this.modifier = modifier;
|
||||
|
|
|
@ -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.
|
||||
*/
|
||||
|
|
|
@ -267,7 +267,7 @@ public class ESLZ4Tests extends AbstractLZ4TestCase {
|
|||
}
|
||||
|
||||
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 };
|
||||
// decompression should neither throw an exception nor loop indefinitely
|
||||
for (LZ4FastDecompressor decompressor : FAST_DECOMPRESSORS) {
|
||||
|
@ -279,7 +279,7 @@ public class ESLZ4Tests extends AbstractLZ4TestCase {
|
|||
}
|
||||
|
||||
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 int decompressedLength = 10;
|
||||
|
||||
|
@ -305,7 +305,7 @@ public class ESLZ4Tests extends AbstractLZ4TestCase {
|
|||
}
|
||||
|
||||
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 };
|
||||
|
||||
for (int i = 1; i < 5; ++i) {
|
||||
|
|
|
@ -102,7 +102,7 @@ public class SslConfigurationKeys {
|
|||
public static final String KEYSTORE_TYPE = "keystore.type";
|
||||
/**
|
||||
* 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";
|
||||
// -- PEM
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue