Skip to content

Commit bb6da03

Browse files
committed
Fixed wrong url and added quotes around “_source” in javadocs
1 parent 6ff188f commit bb6da03

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

client/rest-high-level/src/main/java/org/elasticsearch/client/RestHighLevelClient.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -728,8 +728,8 @@ public final void existsAsync(GetRequest getRequest, RequestOptions options, Act
728728
}
729729

730730
/**
731-
* Checks for the existence of a document with a _source field. Returns true if it exists, false otherwise.
732-
* See <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html#_sourcel">Source exists API
731+
* Checks for the existence of a document with a "_source" field. Returns true if it exists, false otherwise.
732+
* See <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html#_source">Source exists API
733733
* on elastic.co</a>
734734
* @param getRequest the request
735735
* @param options the request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
@@ -741,8 +741,8 @@ public boolean existsSource(GetRequest getRequest, RequestOptions options) throw
741741
}
742742

743743
/**
744-
* Asynchronously checks for the existence of a document with a _source field. Returns true if it exists, false otherwise.
745-
* See <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html#_sourcel">Source exists API
744+
* Asynchronously checks for the existence of a document with a "_source" field. Returns true if it exists, false otherwise.
745+
* See <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html#_source">Source exists API
746746
* on elastic.co</a>
747747
* @param getRequest the request
748748
* @param options the request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized

0 commit comments

Comments
 (0)