mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-02-04 21:33:56 +00:00
fix doc minmax
This commit is contained in:
parent
e036b54fcb
commit
1320b41d88
4 changed files with 7 additions and 7 deletions
|
@ -23,12 +23,12 @@ Requires
|
|||
Returns
|
||||
========================================
|
||||
|
||||
| ``pair<T, T>(x, y)``, where x has the smallest and y has the largest value in the initializer list.
|
||||
| ``pair<T const&, T const&>(b, a)`` if b is smaller than a, and ``pair<T const&, T const&>(a, b)`` otherwise.
|
||||
|
||||
Remarks
|
||||
========================================
|
||||
|
||||
| Returns ``pair<const T&, const T&>(a, b)`` when the arguments are equivalent.
|
||||
| Returns ``pair<T const&, T const&>(a, b)`` when the arguments are equivalent.
|
||||
|
||||
Remarks
|
||||
========================================
|
||||
|
|
|
@ -68,13 +68,13 @@
|
|||
<div class="section" id="returns">
|
||||
<h2>Returns<a class="headerlink" href="#returns" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="line-block">
|
||||
<div class="line"><tt class="docutils literal"><span class="pre">pair<T,</span> <span class="pre">T>(x,</span> <span class="pre">y)</span></tt>, where x has the smallest and y has the largest value in the initializer list.</div>
|
||||
<div class="line"><tt class="docutils literal"><span class="pre">pair<T</span> <span class="pre">const&,</span> <span class="pre">T</span> <span class="pre">const&>(b,</span> <span class="pre">a)</span></tt> if b is smaller than a, and <tt class="docutils literal"><span class="pre">pair<T</span> <span class="pre">const&,</span> <span class="pre">T</span> <span class="pre">const&>(a,</span> <span class="pre">b)</span></tt> otherwise.</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="remarks">
|
||||
<h2>Remarks<a class="headerlink" href="#remarks" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="line-block">
|
||||
<div class="line">Returns <tt class="docutils literal"><span class="pre">pair<const</span> <span class="pre">T&,</span> <span class="pre">const</span> <span class="pre">T&>(a,</span> <span class="pre">b)</span></tt> when the arguments are equivalent.</div>
|
||||
<div class="line">Returns <tt class="docutils literal"><span class="pre">pair<T</span> <span class="pre">const&,</span> <span class="pre">T</span> <span class="pre">const&>(a,</span> <span class="pre">b)</span></tt> when the arguments are equivalent.</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="id1">
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -23,12 +23,12 @@ Requires
|
|||
Returns
|
||||
========================================
|
||||
|
||||
| ``pair<T, T>(x, y)``, where x has the smallest and y has the largest value in the initializer list.
|
||||
| ``pair<T const&, T const&>(b, a)`` if b is smaller than a, and ``pair<T const&, T const&>(a, b)`` otherwise.
|
||||
|
||||
Remarks
|
||||
========================================
|
||||
|
||||
| Returns ``pair<const T&, const T&>(a, b)`` when the arguments are equivalent.
|
||||
| Returns ``pair<T const&, T const&>(a, b)`` when the arguments are equivalent.
|
||||
|
||||
Remarks
|
||||
========================================
|
||||
|
|
Loading…
Add table
Reference in a new issue