Skip to content

Commit 8187fdd

Browse files
keichingerpolyfractal
authored andcommitted
[DOCS] Removed unwanted ) and added proper formatting (#497)
1 parent a4dd09f commit 8187fdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/search-operations.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ $results = $client->search($params);
223223

224224
The Scan/Scroll functionality of Elasticsearch is similar to search, but different in many ways. It works by executing a search query with a `search_type` of `scan`. This initiates a "scan window" which will remain open for the duration of the scan. This allows proper, consistent pagination.
225225

226-
Once a scan window is open, you may start _scrolling) over that window. This returns results matching your query...but returns them in random order. This random ordering is important to performance. Deep pagination is expensive when you need to maintain a sorted, consistent order across shards. By removing this obligation, Scan/Scroll can efficiently export all the data from your index.
226+
Once a scan window is open, you may start `_scrolling` over that window. This returns results matching your query... but returns them in random order. This random ordering is important to performance. Deep pagination is expensive when you need to maintain a sorted, consistent order across shards. By removing this obligation, Scan/Scroll can efficiently export all the data from your index.
227227

228228
This is an example which can be used as a template for more advanced operations:
229229

0 commit comments

Comments
 (0)