Fix comments containing 'the this' (#13624)

This commit is contained in:
Jakub Slowinski 2024-07-31 19:00:34 +01:00 committed by GitHub
parent a1816e3f65
commit 255a2fcf9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -42,7 +42,7 @@ public class FacetField extends Field {
/** Path for this field. */
public final String[] path;
/** Creates the this from {@code dim} and {@code path}. */
/** Creates this from {@code dim} and {@code path}. */
public FacetField(String dim, String... path) {
super("dummy", TYPE);
verifyLabel(dim);

View File

@ -470,7 +470,7 @@ public final class JoinUtil {
* <p>This join has certain restrictions and requirements: 1) A document can only refer to one
* other document. (but can be referred by one or more documents) 2) Documents on each side of the
* join must be distinguishable. Typically this can be done by adding an extra field that
* identifies the "from" and "to" side and then the fromQuery and toQuery must take the this into
* identifies the "from" and "to" side and then the fromQuery and toQuery must take this into
* account. 3) There must be a single sorted doc values join field used by both the "from" and
* "to" documents. This join field should store the join values as UTF-8 strings. 4) An ordinal
* map must be provided that is created on top of the join field.

View File

@ -281,7 +281,7 @@ public class MemoryIndex {
/**
* Returns the offset of the currently written slice. The returned value should be used as the
* end offset to initialize a {@link SliceReader} once this slice is fully written or to reset
* the this writer if another slice needs to be written.
* the writer if another slice needs to be written.
*/
public int getCurrentOffset() {
return offset;

View File

@ -42,7 +42,7 @@ import org.apache.lucene.util.BytesRef;
* document.add(new SuggestField(name, "suggestion", 4));
* </pre>
*
* To perform document suggestions based on the this field, use {@link
* To perform document suggestions based on the field, use {@link
* SuggestIndexSearcher#suggest(CompletionQuery, int, boolean)}
*
* @lucene.experimental