From 29a728526ed11e4681c63b12ad5876d7d1685053 Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Wed, 14 Mar 2018 13:02:55 -0400 Subject: [PATCH] Fix typo in terminate after API docs This commit fixes a minor typo in the terminate after Java API docs. Relates #29065 --- docs/java-api/search.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/java-api/search.asciidoc b/docs/java-api/search.asciidoc index dfc27675202..78fb4539641 100644 --- a/docs/java-api/search.asciidoc +++ b/docs/java-api/search.asciidoc @@ -128,7 +128,7 @@ documentation for details. The maximum number of documents to collect for each shard, upon reaching which the query execution will terminate early. If set, you will be able to check if the operation terminated early by asking for `isTerminatedEarly()` in the -`SearchResponse` onject: +`SearchResponse` object: [source,java] --------------------------------------------------