Skip to content

Commit 8bb2e8e

Browse files
Fix documentation bugs
1 parent f832a39 commit 8bb2e8e

5 files changed

+14
-14
lines changed

Docs/SuperLinq.Docs/apidoc/SuperLinq.SuperEnumerable.PreScan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ uid: SuperLinq.SuperEnumerable.PreScan``1(System.Collections.Generic.IEnumerable
33
example: [*content]
44
---
55
The following code example demonstrates how to perform an exclusive pre-fix scan on a sequence using `PreScan`.
6-
[!code-csharp[](SuperLinq/PreScan/PreScan1.linq#L6-)]
6+
[!code-csharp[](SuperLinq/PreScan/PreScan.linq#L6-)]

Docs/SuperLinq.Docs/apidoc/SuperLinq.SuperEnumerable.Rank.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ uid: SuperLinq.SuperEnumerable.DenseRankBy``2(System.Collections.Generic.IEnumer
1717
example: [*content]
1818
---
1919
The following code example demonstrates how to rank the items in a sequence according to a key using `DenseRankBy`.
20-
[!code-csharp[](SuperLinq/DenseRank/DenseRankBy1.linq#L6-)]
20+
[!code-csharp[](SuperLinq/DenseRankBy/DenseRankBy1.linq#L6-)]
2121

2222
---
2323
uid: SuperLinq.SuperEnumerable.DenseRankBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})
2424
example: [*content]
2525
---
2626
The following code example demonstrates how to rank the items in a sequence according to a key using `DenseRankBy`.
27-
[!code-csharp[](SuperLinq/DenseRank/DenseRankBy3.linq#L6-)]
27+
[!code-csharp[](SuperLinq/DenseRankBy/DenseRankBy3.linq#L6-)]
2828

2929
----
3030
uid: SuperLinq.SuperEnumerable.Rank``1(System.Collections.Generic.IEnumerable{``0})
@@ -45,11 +45,11 @@ uid: SuperLinq.SuperEnumerable.RankBy``2(System.Collections.Generic.IEnumerable{
4545
example: [*content]
4646
----
4747
The following code example demonstrates how to rank the items in a sequence according to a key using `RankBy`.
48-
[!code-csharp[](SuperLinq/Rank/RankBy1.linq#L6-)]
48+
[!code-csharp[](SuperLinq/RankBy/RankBy1.linq#L6-)]
4949

5050
----
5151
uid: SuperLinq.SuperEnumerable.RankBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})
5252
example: [*content]
5353
----
5454
The following code example demonstrates how to rank the items in a sequence according to a key using `RankBy`.
55-
[!code-csharp[](SuperLinq/Rank/RankBy3.linq#L6-)]
55+
[!code-csharp[](SuperLinq/RankBy/RankBy3.linq#L6-)]

Docs/SuperLinq.Docs/apidoc/SuperLinq.SuperEnumerable.Return.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ uid: SuperLinq.SuperEnumerable.Return``1(``0)
33
example: [*content]
44
---
55
The following code example demonstrates how to return a single element as a sequence using `Return`.
6-
[!code-csharp[](SuperLinq/Return/Return1.linq#L6-)]
6+
[!code-csharp[](SuperLinq/Return/Return.linq#L6-)]

Docs/SuperLinq.Docs/apidoc/SuperLinq.SuperEnumerable.ScanBy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
uid: ScanBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``1,``2},System.Func{``2,``1,``0,``2})
2+
uid: SuperLinq.SuperEnumerable.ScanBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``1,``2},System.Func{``2,``1,``0,``2})
33
example: [*content]
44
---
55
The following code example demonstrates how to execute a post-fix scan by key on a sequence using `ScanBy`.
66
[!code-csharp[](SuperLinq/ScanBy/ScanBy1.linq#L6-)]
77

88
---
9-
uid: ScanBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``1,``2},System.Func{``2,``1,``0,``2},System.Collections.Generic.IEqualityComparer{``1})
9+
uid: SuperLinq.SuperEnumerable.ScanBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``1,``2},System.Func{``2,``1,``0,``2},System.Collections.Generic.IEqualityComparer{``1})
1010
example: [*content]
1111
---
1212
The following code example demonstrates how to execute a post-fix scan by key on a sequence using `ScanBy`.
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
uid: ScanRight``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``0,``0})
2+
uid: SuperLinq.SuperEnumerable.ScanRight``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``0,``0})
33
example: [*content]
44
---
5-
The following code example demonstrates how to execute a right-associative post-fix scan by key on a sequence using `ScanRight`.
6-
[!code-csharp[](SuperLinq/ScanBy/ScanBy1.linq#L6-)]
5+
The following code example demonstrates how to execute a right-associative post-fix scan on a sequence using `ScanRight`.
6+
[!code-csharp[](SuperLinq/ScanRight/ScanRight1.linq#L6-)]
77

88
---
9-
uid: ScanRight``2(System.Collections.Generic.IEnumerable{``0},``1,System.Func{``0,``1,``1})
9+
uid: SuperLinq.SuperEnumerable.ScanRight``2(System.Collections.Generic.IEnumerable{``0},``1,System.Func{``0,``1,``1})
1010
example: [*content]
1111
---
12-
The following code example demonstrates how to execute a right-associative post-fix scan by key on a sequence using `ScanRight`.
13-
[!code-csharp[](SuperLinq/ScanBy/ScanBy2.linq#L6-)]
12+
The following code example demonstrates how to execute a right-associative post-fix scan on a sequence using `ScanRight`.
13+
[!code-csharp[](SuperLinq/ScanRight/ScanRight2.linq#L6-)]

0 commit comments

Comments
 (0)