Skip to content

Commit b9c1e44

Browse files
committed
Fix some stable names for indexing
1 parent af5e38f commit b9c1e44

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

xml/issue2404.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2-
<!DOCTYPE issue SYSTEM "lwg-issue.dtd" [
2+
<!DOCTYPE issue SYSTEM "lwg-issue.dtd" [
33
<!ENTITY nbsp "&#160;">
44
] >
55

66
<issue num="2404" status="C++17">
77
<title><tt>mismatch()</tt>'s complexity needs to be updated</title>
8-
<section><sref ref="[mismatch]"/></section>
8+
<section><sref ref="[alg.mismatch]"/></section>
99
<submitter>Stephan T. Lavavej</submitter>
1010
<date>14 Jun 2014</date>
1111
<priority>0</priority>
1212

1313
<discussion>
1414
<p>
15-
<a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3671.html">N3671</a> updated the complexities of
15+
<a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3671.html">N3671</a> updated the complexities of
1616
<tt>equal()</tt> and <tt>is_permutation()</tt>, but not <tt>mismatch()</tt>.
1717
</p>
1818

@@ -31,7 +31,7 @@ Move to Ready
3131

3232
<blockquote>
3333
<p>
34-
-3- <i>Complexity</i>: At most <tt><ins>min(</ins>last1 - first1<ins>, last2 - first2)</ins></tt> applications of the
34+
-3- <i>Complexity</i>: At most <tt><ins>min(</ins>last1 - first1<ins>, last2 - first2)</ins></tt> applications of the
3535
corresponding predicate.
3636
</p>
3737
</blockquote>

xml/issue3178.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<issue num="3178" status="Resolved">
55
<title><tt>std::mismatch</tt> is missing an upper bound</title>
6-
<section><sref ref="[mismatch]"/></section>
6+
<section><sref ref="[alg.mismatch]"/></section>
77
<submitter>Geoffrey Romer</submitter>
88
<date>20 Dec 2018</date>
99
<priority>0</priority>
@@ -31,7 +31,7 @@ fundamental convention that STL algorithms operate on user-supplied ranges, not
3131
<note>2019-01-26 Priority to 0 and Status to Tentatively Ready after discussions on the reflector</note>
3232
<p>
3333
During that reflector discussion several contributers argued in favour for changing the current wording in
34-
<sref ref="[mismatch]"/> p3 from "smallest integer" to "smallest <ins>nonnegative</ins> integer". This minor
34+
<sref ref="[mismatch]"/> p3 from "smallest integer" to "smallest <ins>nonnegative</ins> integer". This minor
3535
wording delta has also been added to the original proposed wording.
3636
</p>
3737

@@ -79,8 +79,8 @@ both parameters <tt>pred</tt> and <tt>proj1</tt>.</p></li>
7979
</ol>
8080
<ins>-?- Let <tt><i>N</i></tt> be <tt>min(last1 - first1, last2 - first2)</tt>.</ins>
8181
<p/>
82-
-3- <i>Returns:</i> <tt>{ first1 + n, first2 + n }</tt>, where <tt>n</tt> is the smallest <ins>nonnegative</ins> integer such
83-
that <tt><i>E</i></tt> holds, or <tt><del>min(last1 - first1, last2 - first2)</del><ins><i>N</i></ins></tt> if no such integer
82+
-3- <i>Returns:</i> <tt>{ first1 + n, first2 + n }</tt>, where <tt>n</tt> is the smallest <ins>nonnegative</ins> integer such
83+
that <tt><i>E</i></tt> holds, or <tt><del>min(last1 - first1, last2 - first2)</del><ins><i>N</i></ins></tt> if no such integer
8484
<ins>less than <tt><i>N</i></tt></ins> exists.
8585
<p/>
8686
-4- <i>Complexity:</i> At most <tt><del>min(last1 - first1, last2 - first2)</del><ins><i>N</i></ins></tt> applications of the

xml/issue3909.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<issue num="3909" status="Tentatively NAD">
55
<title>Issues about <code>viewable_range</code></title>
6-
<section><sref ref="[ranges.refinements]"/><sref ref="[range.adaptor.object]"/></section>
6+
<section><sref ref="[range.refinements]"/><sref ref="[range.adaptor.object]"/></section>
77
<submitter>Jiang An</submitter>
88
<date>27 Mar 2023</date>
99
<priority>99</priority>

xml/issue4206.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<issue num="4206" status="New">
55
<title>Alias template `connect_result_t` should be constrained with `sender_to`</title>
6-
<section><sref ref="[exec.syn]"/></section>
6+
<section><sref ref="[execution.syn]"/></section>
77
<submitter>Eric Niebler</submitter>
88
<date>04 Feb 2025</date>
99
<priority>1</priority>
@@ -60,7 +60,7 @@ This wording is relative to <paper num="N5001"/>.
6060

6161
<ol>
6262
<li>
63-
Modify <sref ref="[exec.syn]"/> as indicated:
63+
Modify <sref ref="[execution.syn]"/> as indicated:
6464
<blockquote>
6565
<pre><code>
6666
template&lt;class Sndr, class Rcvr&gt;

0 commit comments

Comments
 (0)