Skip to content

Commit 9ed3f47

Browse files
author
buildbot121
committed
API documentation update by build server
1 parent 609841c commit 9ed3f47

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/api/Advanced.Algorithms.Sorting.CountingSort.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ <h4 id="Advanced_Algorithms_Sorting_CountingSort_Sort_IEnumerable_System_Int32__
108108
<div class="markdown level1 conceptual"></div>
109109
<h5 class="decalaration">Declaration</h5>
110110
<div class="codewrapper">
111-
<pre><code class="lang-csharp hljs">public static int[] Sort(IEnumerable&lt;int&gt; array, SortDirection sortDirection = null)</code></pre>
111+
<pre><code class="lang-csharp hljs">public static int[] Sort(IEnumerable&lt;int&gt; enumerable, SortDirection sortDirection = null)</code></pre>
112112
</div>
113113
<h5 class="parameters">Parameters</h5>
114114
<table class="table table-bordered table-striped table-condensed">
@@ -122,7 +122,7 @@ <h5 class="parameters">Parameters</h5>
122122
<tbody>
123123
<tr>
124124
<td><span class="xref">IEnumerable</span>&lt;<a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a>&gt;</td>
125-
<td><span class="parametername">array</span></td>
125+
<td><span class="parametername">enumerable</span></td>
126126
<td></td>
127127
</tr>
128128
<tr>

docs/api/Advanced.Algorithms.Sorting.TreeSort-1.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ <h4 id="Advanced_Algorithms_Sorting_TreeSort_1_Sort_IEnumerable__0__SortDirectio
123123
<div class="markdown level1 conceptual"></div>
124124
<h5 class="decalaration">Declaration</h5>
125125
<div class="codewrapper">
126-
<pre><code class="lang-csharp hljs">public static IEnumerable&lt;T&gt; Sort(IEnumerable&lt;T&gt; array, SortDirection sortDirection = null)</code></pre>
126+
<pre><code class="lang-csharp hljs">public static IEnumerable&lt;T&gt; Sort(IEnumerable&lt;T&gt; enumerable, SortDirection sortDirection = null)</code></pre>
127127
</div>
128128
<h5 class="parameters">Parameters</h5>
129129
<table class="table table-bordered table-striped table-condensed">
@@ -137,7 +137,7 @@ <h5 class="parameters">Parameters</h5>
137137
<tbody>
138138
<tr>
139139
<td><span class="xref">IEnumerable</span>&lt;T&gt;</td>
140-
<td><span class="parametername">array</span></td>
140+
<td><span class="parametername">enumerable</span></td>
141141
<td></td>
142142
</tr>
143143
<tr>

docs/index.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@
722722
"api/Advanced.Algorithms.Sorting.CountingSort.html": {
723723
"href": "api/Advanced.Algorithms.Sorting.CountingSort.html",
724724
"title": "Class CountingSort | Advanced Algorithms",
725-
"keywords": "Class CountingSort A counting sort implementation. Inheritance Object CountingSort Namespace : Advanced.Algorithms.Sorting Assembly : Advanced.Algorithms.dll Syntax public class CountingSort : object Methods Sort(IEnumerable<Int32>, SortDirection) Sort given integers. Declaration public static int[] Sort(IEnumerable<int> array, SortDirection sortDirection = null) Parameters Type Name Description IEnumerable < Int32 > array SortDirection sortDirection Returns Type Description Int32 []"
725+
"keywords": "Class CountingSort A counting sort implementation. Inheritance Object CountingSort Namespace : Advanced.Algorithms.Sorting Assembly : Advanced.Algorithms.dll Syntax public class CountingSort : object Methods Sort(IEnumerable<Int32>, SortDirection) Sort given integers. Declaration public static int[] Sort(IEnumerable<int> enumerable, SortDirection sortDirection = null) Parameters Type Name Description IEnumerable < Int32 > enumerable SortDirection sortDirection Returns Type Description Int32 []"
726726
},
727727
"api/Advanced.Algorithms.Sorting.HeapSort-1.html": {
728728
"href": "api/Advanced.Algorithms.Sorting.HeapSort-1.html",
@@ -767,7 +767,7 @@
767767
"api/Advanced.Algorithms.Sorting.TreeSort-1.html": {
768768
"href": "api/Advanced.Algorithms.Sorting.TreeSort-1.html",
769769
"title": "Class TreeSort<T> | Advanced Algorithms",
770-
"keywords": "Class TreeSort<T> A tree sort implementation. Inheritance Object TreeSort<T> Namespace : Advanced.Algorithms.Sorting Assembly : Advanced.Algorithms.dll Syntax public class TreeSort<T> : object where T : IComparable Type Parameters Name Description T Methods Sort(IEnumerable<T>, SortDirection) Time complexity: O(nlog(n)). Declaration public static IEnumerable<T> Sort(IEnumerable<T> array, SortDirection sortDirection = null) Parameters Type Name Description IEnumerable <T> array SortDirection sortDirection Returns Type Description IEnumerable <T>"
770+
"keywords": "Class TreeSort<T> A tree sort implementation. Inheritance Object TreeSort<T> Namespace : Advanced.Algorithms.Sorting Assembly : Advanced.Algorithms.dll Syntax public class TreeSort<T> : object where T : IComparable Type Parameters Name Description T Methods Sort(IEnumerable<T>, SortDirection) Time complexity: O(nlog(n)). Declaration public static IEnumerable<T> Sort(IEnumerable<T> enumerable, SortDirection sortDirection = null) Parameters Type Name Description IEnumerable <T> enumerable SortDirection sortDirection Returns Type Description IEnumerable <T>"
771771
},
772772
"api/Advanced.Algorithms.String.html": {
773773
"href": "api/Advanced.Algorithms.String.html",

0 commit comments

Comments
 (0)