Skip to content

Commit 7aeebd1

Browse files
authored
Merge pull request #1434 from colleenmcginnis/docs-fix-cross-repo-links
[docs] Clean up cross-repo links
2 parents 1630632 + 3a126ab commit 7aeebd1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/reference/iterators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The PHP client includes helpers for iterating through results by page or by hits
99

1010
## Search response iterator [search-response-iterator]
1111

12-
Use the `SearchResponseIterator` to iterate page by page in a search result using [pagination](elasticsearch://docs/reference/elasticsearch/rest-apis/paginate-search-results.md).
12+
Use the `SearchResponseIterator` to iterate page by page in a search result using [pagination](elasticsearch://reference/elasticsearch/rest-apis/paginate-search-results.md).
1313

1414
Here’s an example:
1515

@@ -40,7 +40,7 @@ foreach($pages as $page) {
4040

4141
### Search hit iterator [search-hit-iterator]
4242

43-
Use the `SearchHitIterator` to iterate in a `SearchResponseIterator` without worrying about [pagination](elasticsearch://docs/reference/elasticsearch/rest-apis/paginate-search-results.md).
43+
Use the `SearchHitIterator` to iterate in a `SearchResponseIterator` without worrying about [pagination](elasticsearch://reference/elasticsearch/rest-apis/paginate-search-results.md).
4444

4545
Here’s an example:
4646

docs/reference/search_operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ The scrolling functionality of {{es}} is used to paginate over many documents in
221221

222222
Scrolling works by maintaining a "point in time" snapshot of the index which is then used to page over. This window allows consistent paging even if there is background indexing/updating/deleting. First, you execute a search request with `scroll` enabled. This returns a "page" of documents, and a `scroll_id` which is used to continue paginating through the hits.
223223

224-
More details about scrolling can be found in the [reference documentation](elasticsearch://docs/reference/elasticsearch/rest-apis/paginate-search-results.md#scroll-search-results).
224+
More details about scrolling can be found in the [reference documentation](elasticsearch://reference/elasticsearch/rest-apis/paginate-search-results.md#scroll-search-results).
225225

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

0 commit comments

Comments
 (0)