Skip to content

Commit 8481edf

Browse files
committed
[spanstream etc.] Change stable label from "ctor" to "cons"
1 parent 48ac7b1 commit 8481edf

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

source/iostreams.tex

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9778,7 +9778,7 @@
97789778
using off_type = typename traits::off_type;
97799779
using traits_type = traits;
97809780

9781-
// \ref{spanbuf.ctor}, constructors
9781+
// \ref{spanbuf.cons}, constructors
97829782
basic_spanbuf() : basic_spanbuf(ios_base::in | ios_base::out) {}
97839783
explicit basic_spanbuf(ios_base::openmode which)
97849784
: basic_spanbuf(std::span<charT>(), which) {}
@@ -9828,7 +9828,7 @@
98289828
the underlying character sequence.
98299829
\end{itemize}
98309830

9831-
\rSec3[spanbuf.ctor]{Constructors}
9831+
\rSec3[spanbuf.cons]{Constructors}
98329832

98339833
\indexlibraryctor{basic_spanbuf}%
98349834
\begin{itemdecl}
@@ -10104,7 +10104,7 @@
1010410104
using off_type = typename traits::off_type;
1010510105
using traits_type = traits;
1010610106

10107-
// \ref{ispanstream.ctor}, constructors
10107+
// \ref{ispanstream.cons}, constructors
1010810108
explicit basic_ispanstream(std::span<charT> s,
1010910109
ios_base::openmode which = ios_base::in);
1011010110
basic_ispanstream(const basic_ispanstream&) = delete;
@@ -10137,7 +10137,7 @@
1013710137
in the underlying \tcode{spanbuf}.
1013810138
\end{note}
1013910139

10140-
\rSec3[ispanstream.ctor]{Constructors}
10140+
\rSec3[ispanstream.cons]{Constructors}
1014110141

1014210142
\indexlibraryctor{basic_ispanstream}%
1014310143
\begin{itemdecl}
@@ -10150,7 +10150,7 @@
1015010150
Initializes the base class with
1015110151
\tcode{basic_istream<charT, traits>(addressof(sb))}
1015210152
and \tcode{sb} with
10153-
\tcode{basic_spanbuf<charT, traits>(s, which | ios_base::in)}\iref{spanbuf.ctor}.
10153+
\tcode{basic_spanbuf<charT, traits>(s, which | ios_base::in)}\iref{spanbuf.cons}.
1015410154
\end{itemdescr}
1015510155

1015610156
\indexlibraryctor{basic_ispanstream}%
@@ -10292,7 +10292,7 @@
1029210292
using off_type = typename traits::off_type;
1029310293
using traits_type = traits;
1029410294

10295-
// \ref{ospanstream.ctor}, constructors
10295+
// \ref{ospanstream.cons}, constructors
1029610296
explicit basic_ospanstream(std::span<charT> s,
1029710297
ios_base::openmode which = ios_base::out);
1029810298
basic_ospanstream(const basic_ospanstream&) = delete;
@@ -10315,7 +10315,7 @@
1031510315
}
1031610316
\end{codeblock}
1031710317

10318-
\rSec3[ospanstream.ctor]{Constructors}
10318+
\rSec3[ospanstream.cons]{Constructors}
1031910319

1032010320
\indexlibraryctor{basic_ospanstream}%
1032110321
\begin{itemdecl}
@@ -10329,7 +10329,7 @@
1032910329
Initializes the base class with
1033010330
\tcode{basic_ostream<charT, traits>(addressof(sb))}
1033110331
and \tcode{sb} with
10332-
\tcode{basic_spanbuf<charT, traits>(s, which | ios_base::out)}\iref{spanbuf.ctor}.
10332+
\tcode{basic_spanbuf<charT, traits>(s, which | ios_base::out)}\iref{spanbuf.cons}.
1033310333
\end{itemdescr}
1033410334

1033510335
\indexlibraryctor{basic_ospanstream}%
@@ -10430,7 +10430,7 @@
1043010430
using off_type = typename traits::off_type;
1043110431
using traits_type = traits;
1043210432

10433-
// \ref{spanstream.ctor}, constructors
10433+
// \ref{spanstream.cons}, constructors
1043410434
explicit basic_spanstream(std::span<charT> s,
1043510435
ios_base::openmode which = ios_base::out | ios_base::in);
1043610436
basic_spanstream(const basic_spanstream&) = delete;
@@ -10453,7 +10453,7 @@
1045310453
}
1045410454
\end{codeblock}
1045510455

10456-
\rSec3[spanstream.ctor]{Constructors}
10456+
\rSec3[spanstream.cons]{Constructors}
1045710457

1045810458
\indexlibraryctor{basic_spanstream}%
1045910459
\begin{itemdecl}
@@ -10467,7 +10467,7 @@
1046710467
Initializes the base class with
1046810468
\tcode{basic_iostream<charT, traits>(addressof(sb))}
1046910469
and \tcode{sb} with
10470-
\tcode{basic_spanbuf<charT, traits>(s, which)}\iref{spanbuf.ctor}.
10470+
\tcode{basic_spanbuf<charT, traits>(s, which)}\iref{spanbuf.cons}.
1047110471
\end{itemdescr}
1047210472

1047310473
\indexlibraryctor{basic_spanstream}%

0 commit comments

Comments
 (0)