Skip to content

Commit 91d6466

Browse files
[Docs] order anchor-list output explicitly. (#4894) (#4903)
* Make sure anchor-links output is explicitly ordered as well * update docs Co-authored-by: Martijn Laarman <Mpdreamz@gmail.com>
1 parent 147d2fe commit 91d6466

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/aggregations/pipeline/normalize/normalize-aggregation-usage.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:ref_current: https://www.elastic.co/guide/en/elasticsearch/reference/master
1+
:ref_current: https://www.elastic.co/guide/en/elasticsearch/reference/7.x
22

33
:github: https://github.com/elastic/elasticsearch-net
44

@@ -7,7 +7,7 @@
77
////
88
IMPORTANT NOTE
99
==============
10-
This file has been generated from https://github.com/elastic/elasticsearch-net/tree/master/src/Tests/Tests/Aggregations/Pipeline/Normalize/NormalizeAggregationUsageTests.cs.
10+
This file has been generated from https://github.com/elastic/elasticsearch-net/tree/7.x/src/Tests/Tests/Aggregations/Pipeline/Normalize/NormalizeAggregationUsageTests.cs.
1111
If you wish to submit a PR for any spelling mistakes, typos or grammatical errors for this file,
1212
please modify the original csharp file found at the link and submit the PR with that change. Thanks!
1313
////

docs/search/scrolling-documents.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:ref_current: https://www.elastic.co/guide/en/elasticsearch/reference/master
1+
:ref_current: https://www.elastic.co/guide/en/elasticsearch/reference/7.x
22

33
:github: https://github.com/elastic/elasticsearch-net
44

@@ -7,7 +7,7 @@
77
////
88
IMPORTANT NOTE
99
==============
10-
This file has been generated from https://github.com/elastic/elasticsearch-net/tree/master/src/Tests/Tests/Search/ScrollingDocuments.doc.cs.
10+
This file has been generated from https://github.com/elastic/elasticsearch-net/tree/7.x/src/Tests/Tests/Search/ScrollingDocuments.doc.cs.
1111
If you wish to submit a PR for any spelling mistakes, typos or grammatical errors for this file,
1212
please modify the original csharp file found at the link and submit the PR with that change. Thanks!
1313
////

src/DocGenerator/AsciiDoc/RawAsciidocVisitor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public override void VisitAttributeEntry(AttributeEntry attributeEntry)
8383

8484
var list = new UnorderedList();
8585

86-
foreach (var directory in directories)
86+
foreach (var directory in directories.OrderBy(s=>s))
8787
{
8888
var files = Directory.EnumerateFiles(
8989
Path.Combine(Program.TmpOutputDirPath, directory), "*.asciidoc", SearchOption.AllDirectories);

0 commit comments

Comments
 (0)