Skip to content

Commit

Permalink
API documentation update by build server
Browse files Browse the repository at this point in the history
  • Loading branch information
buildbot121 committed Jan 5, 2019
1 parent 8a196ee commit 084f4e3
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 19 deletions.
6 changes: 3 additions & 3 deletions docs/api/Advanced.Algorithms.DataStructures.AVLTree-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ <h4 id="Advanced_Algorithms_DataStructures_AVLTree_1__ctor_IEnumerable__0__Syste
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public AVLTree(IEnumerable&lt;T&gt; sortedKeys, bool enableNodeLookUp = false)</code></pre>
<pre><code class="lang-csharp hljs">public AVLTree(IEnumerable&lt;T&gt; sortedCollection, bool enableNodeLookUp = false)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand All @@ -143,8 +143,8 @@ <h5 class="parameters">Parameters</h5>
<tbody>
<tr>
<td><span class="xref">IEnumerable</span>&lt;T&gt;</td>
<td><span class="parametername">sortedKeys</span></td>
<td><p>The sorted keys.</p>
<td><span class="parametername">sortedCollection</span></td>
<td><p>The initial sorted collection.</p>
</td>
</tr>
<tr>
Expand Down
4 changes: 2 additions & 2 deletions docs/api/Advanced.Algorithms.DataStructures.BST-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ <h4 id="Advanced_Algorithms_DataStructures_BST_1__ctor_IEnumerable__0__" data-ui
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public BST(IEnumerable&lt;T&gt; sortedKeys)</code></pre>
<pre><code class="lang-csharp hljs">public BST(IEnumerable&lt;T&gt; sortedCollection)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand All @@ -153,7 +153,7 @@ <h5 class="parameters">Parameters</h5>
<tbody>
<tr>
<td><span class="xref">IEnumerable</span>&lt;T&gt;</td>
<td><span class="parametername">sortedKeys</span></td>
<td><span class="parametername">sortedCollection</span></td>
<td></td>
</tr>
</tbody>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ <h4 id="Advanced_Algorithms_DataStructures_RedBlackTree_1__ctor_IEnumerable__0__
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public RedBlackTree(IEnumerable&lt;T&gt; sortedKeys = null)</code></pre>
<pre><code class="lang-csharp hljs">public RedBlackTree(IEnumerable&lt;T&gt; sortedCollection = null)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand All @@ -143,8 +143,9 @@ <h5 class="parameters">Parameters</h5>
<tbody>
<tr>
<td><span class="xref">IEnumerable</span>&lt;T&gt;</td>
<td><span class="parametername">sortedKeys</span></td>
<td></td>
<td><span class="parametername">sortedCollection</span></td>
<td><p>The sorted initial collection.</p>
</td>
</tr>
</tbody>
</table>
Expand Down
7 changes: 4 additions & 3 deletions docs/api/Advanced.Algorithms.DataStructures.SplayTree-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ <h4 id="Advanced_Algorithms_DataStructures_SplayTree_1__ctor_IEnumerable__0__" d
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public SplayTree(IEnumerable&lt;T&gt; collection)</code></pre>
<pre><code class="lang-csharp hljs">public SplayTree(IEnumerable&lt;T&gt; sortedCollection)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand All @@ -153,8 +153,9 @@ <h5 class="parameters">Parameters</h5>
<tbody>
<tr>
<td><span class="xref">IEnumerable</span>&lt;T&gt;</td>
<td><span class="parametername">collection</span></td>
<td></td>
<td><span class="parametername">sortedCollection</span></td>
<td><p>The sorted collection.</p>
</td>
</tr>
</tbody>
</table>
Expand Down
7 changes: 4 additions & 3 deletions docs/api/Advanced.Algorithms.DataStructures.TreapTree-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ <h4 id="Advanced_Algorithms_DataStructures_TreapTree_1__ctor_IEnumerable__0__" d
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public TreapTree(IEnumerable&lt;T&gt; collection)</code></pre>
<pre><code class="lang-csharp hljs">public TreapTree(IEnumerable&lt;T&gt; sortedCollection)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand All @@ -153,8 +153,9 @@ <h5 class="parameters">Parameters</h5>
<tbody>
<tr>
<td><span class="xref">IEnumerable</span>&lt;T&gt;</td>
<td><span class="parametername">collection</span></td>
<td></td>
<td><span class="parametername">sortedCollection</span></td>
<td><p>The initial sorted collection.</p>
</td>
</tr>
</tbody>
</table>
Expand Down
Loading

0 comments on commit 084f4e3

Please sign in to comment.