Skip to content

Commit 084f4e3

Browse files
author
buildbot121
committed
API documentation update by build server
1 parent 8a196ee commit 084f4e3

6 files changed

+22
-19
lines changed

docs/api/Advanced.Algorithms.DataStructures.AVLTree-1.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ <h4 id="Advanced_Algorithms_DataStructures_AVLTree_1__ctor_IEnumerable__0__Syste
129129
<div class="markdown level1 conceptual"></div>
130130
<h5 class="decalaration">Declaration</h5>
131131
<div class="codewrapper">
132-
<pre><code class="lang-csharp hljs">public AVLTree(IEnumerable&lt;T&gt; sortedKeys, bool enableNodeLookUp = false)</code></pre>
132+
<pre><code class="lang-csharp hljs">public AVLTree(IEnumerable&lt;T&gt; sortedCollection, bool enableNodeLookUp = false)</code></pre>
133133
</div>
134134
<h5 class="parameters">Parameters</h5>
135135
<table class="table table-bordered table-striped table-condensed">
@@ -143,8 +143,8 @@ <h5 class="parameters">Parameters</h5>
143143
<tbody>
144144
<tr>
145145
<td><span class="xref">IEnumerable</span>&lt;T&gt;</td>
146-
<td><span class="parametername">sortedKeys</span></td>
147-
<td><p>The sorted keys.</p>
146+
<td><span class="parametername">sortedCollection</span></td>
147+
<td><p>The initial sorted collection.</p>
148148
</td>
149149
</tr>
150150
<tr>

docs/api/Advanced.Algorithms.DataStructures.BST-1.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ <h4 id="Advanced_Algorithms_DataStructures_BST_1__ctor_IEnumerable__0__" data-ui
139139
<div class="markdown level1 conceptual"></div>
140140
<h5 class="decalaration">Declaration</h5>
141141
<div class="codewrapper">
142-
<pre><code class="lang-csharp hljs">public BST(IEnumerable&lt;T&gt; sortedKeys)</code></pre>
142+
<pre><code class="lang-csharp hljs">public BST(IEnumerable&lt;T&gt; sortedCollection)</code></pre>
143143
</div>
144144
<h5 class="parameters">Parameters</h5>
145145
<table class="table table-bordered table-striped table-condensed">
@@ -153,7 +153,7 @@ <h5 class="parameters">Parameters</h5>
153153
<tbody>
154154
<tr>
155155
<td><span class="xref">IEnumerable</span>&lt;T&gt;</td>
156-
<td><span class="parametername">sortedKeys</span></td>
156+
<td><span class="parametername">sortedCollection</span></td>
157157
<td></td>
158158
</tr>
159159
</tbody>

docs/api/Advanced.Algorithms.DataStructures.RedBlackTree-1.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ <h4 id="Advanced_Algorithms_DataStructures_RedBlackTree_1__ctor_IEnumerable__0__
129129
<div class="markdown level1 conceptual"></div>
130130
<h5 class="decalaration">Declaration</h5>
131131
<div class="codewrapper">
132-
<pre><code class="lang-csharp hljs">public RedBlackTree(IEnumerable&lt;T&gt; sortedKeys = null)</code></pre>
132+
<pre><code class="lang-csharp hljs">public RedBlackTree(IEnumerable&lt;T&gt; sortedCollection = null)</code></pre>
133133
</div>
134134
<h5 class="parameters">Parameters</h5>
135135
<table class="table table-bordered table-striped table-condensed">
@@ -143,8 +143,9 @@ <h5 class="parameters">Parameters</h5>
143143
<tbody>
144144
<tr>
145145
<td><span class="xref">IEnumerable</span>&lt;T&gt;</td>
146-
<td><span class="parametername">sortedKeys</span></td>
147-
<td></td>
146+
<td><span class="parametername">sortedCollection</span></td>
147+
<td><p>The sorted initial collection.</p>
148+
</td>
148149
</tr>
149150
</tbody>
150151
</table>

docs/api/Advanced.Algorithms.DataStructures.SplayTree-1.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ <h4 id="Advanced_Algorithms_DataStructures_SplayTree_1__ctor_IEnumerable__0__" d
139139
<div class="markdown level1 conceptual"></div>
140140
<h5 class="decalaration">Declaration</h5>
141141
<div class="codewrapper">
142-
<pre><code class="lang-csharp hljs">public SplayTree(IEnumerable&lt;T&gt; collection)</code></pre>
142+
<pre><code class="lang-csharp hljs">public SplayTree(IEnumerable&lt;T&gt; sortedCollection)</code></pre>
143143
</div>
144144
<h5 class="parameters">Parameters</h5>
145145
<table class="table table-bordered table-striped table-condensed">
@@ -153,8 +153,9 @@ <h5 class="parameters">Parameters</h5>
153153
<tbody>
154154
<tr>
155155
<td><span class="xref">IEnumerable</span>&lt;T&gt;</td>
156-
<td><span class="parametername">collection</span></td>
157-
<td></td>
156+
<td><span class="parametername">sortedCollection</span></td>
157+
<td><p>The sorted collection.</p>
158+
</td>
158159
</tr>
159160
</tbody>
160161
</table>

docs/api/Advanced.Algorithms.DataStructures.TreapTree-1.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ <h4 id="Advanced_Algorithms_DataStructures_TreapTree_1__ctor_IEnumerable__0__" d
139139
<div class="markdown level1 conceptual"></div>
140140
<h5 class="decalaration">Declaration</h5>
141141
<div class="codewrapper">
142-
<pre><code class="lang-csharp hljs">public TreapTree(IEnumerable&lt;T&gt; collection)</code></pre>
142+
<pre><code class="lang-csharp hljs">public TreapTree(IEnumerable&lt;T&gt; sortedCollection)</code></pre>
143143
</div>
144144
<h5 class="parameters">Parameters</h5>
145145
<table class="table table-bordered table-striped table-condensed">
@@ -153,8 +153,9 @@ <h5 class="parameters">Parameters</h5>
153153
<tbody>
154154
<tr>
155155
<td><span class="xref">IEnumerable</span>&lt;T&gt;</td>
156-
<td><span class="parametername">collection</span></td>
157-
<td></td>
156+
<td><span class="parametername">sortedCollection</span></td>
157+
<td><p>The initial sorted collection.</p>
158+
</td>
158159
</tr>
159160
</tbody>
160161
</table>

0 commit comments

Comments
 (0)