fix typos in method and docs.

Original Pull Request #2640
Closes #2638
This commit is contained in:
Peter-Josef Meisch 2023-07-21 06:36:36 +00:00 committed by GitHub
parent d9bb9911f9
commit 0028d7d550
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -440,7 +440,7 @@ public abstract class BaseQueryBuilder<Q extends BaseQuery, SELF extends BaseQue
return self(); return self();
} }
public SELF witAllowNoIndices(@Nullable Boolean allowNoIndices) { public SELF withAllowNoIndices(@Nullable Boolean allowNoIndices) {
this.allowNoIndices = allowNoIndices; this.allowNoIndices = allowNoIndices;
return self(); return self();
} }

View File

@ -16,7 +16,7 @@
package org.springframework.data.elasticsearch.utils; package org.springframework.data.elasticsearch.utils;
/** /**
* Class providing an index name witInCo * Class providing an index name with a prefix and a index number
* *
* @author Peter-Josef Meisch * @author Peter-Josef Meisch
*/ */