Skip to content

Commit ff61648

Browse files
Johannes Lairejwakely
authored andcommitted
Add missing whitespace (#1035)
1 parent 27b4676 commit ff61648

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

source/basic.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@
642642
\begin{note}
643643
\indextext{name~hiding}%
644644
a name from an outer scope remains visible up
645-
to the point of declaration of the name that hides it.\begin{example}
645+
to the point of declaration of the name that hides it. \begin{example}
646646

647647
\begin{codeblock}
648648
const int i = 2;
@@ -670,7 +670,7 @@
670670
\pnum
671671
\indextext{declaration!enumerator point~of}%
672672
The point of declaration for an enumerator is immediately after its
673-
\grammarterm{enumerator-definition}.\begin{example}
673+
\grammarterm{enumerator-definition}. \begin{example}
674674

675675
\begin{codeblock}
676676
const int x = 12;
@@ -1624,7 +1624,7 @@
16241624
lookup of the name preceding that \tcode{::} considers only namespaces, types, and
16251625
templates whose specializations are types. If the
16261626
name found does not designate a namespace or a class, enumeration, or dependent type,
1627-
the program is ill-formed.\begin{example}
1627+
the program is ill-formed. \begin{example}
16281628

16291629
\begin{codeblock}
16301630
class A {
@@ -2330,7 +2330,7 @@
23302330
outside the innermost enclosing namespace scope, the block scope declaration declares
23312331
that same entity and receives the linkage of the previous declaration. If there is more
23322332
than one such matching entity, the program is ill-formed. Otherwise, if no matching
2333-
entity is found, the block scope entity receives external linkage.\begin{example}
2333+
entity is found, the block scope entity receives external linkage. \begin{example}
23342334

23352335
\begin{codeblock}
23362336
static void f();

source/declarations.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2217,7 +2217,7 @@
22172217
Each scoped \grammarterm{enumerator} is declared in the scope of the
22182218
enumeration.
22192219
These names obey the scope rules defined for all names
2220-
in~(\ref{basic.scope}) and~(\ref{basic.lookup}).\begin{example}
2220+
in~(\ref{basic.scope}) and~(\ref{basic.lookup}). \begin{example}
22212221

22222222
\begin{codeblock}
22232223
enum direction { left='l', right='r' };

source/declarators.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3938,7 +3938,7 @@
39383938
\begin{note} A constructor or conversion function selected for the copy shall be
39393939
accessible (Clause~\ref{class.access}) in the context of the initializer list.
39403940
\end{note}
3941-
If a narrowing conversion is required to initialize any of the elements, the program is ill-formed.\begin{example}
3941+
If a narrowing conversion is required to initialize any of the elements, the program is ill-formed. \begin{example}
39423942
\begin{codeblock}
39433943
struct X {
39443944
X(std::initializer_list<double> v);

source/locales.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3456,7 +3456,7 @@
34563456
A local variable is initialized as
34573457

34583458
\begin{codeblock}
3459-
fmtflags adjustfield= (flags & (ios_base::adjustfield));
3459+
fmtflags adjustfield = (flags & (ios_base::adjustfield));
34603460
\end{codeblock}
34613461

34623462
The location of any padding\footnote{The conversion specification

0 commit comments

Comments
 (0)