Skip to content

Commit c0c54b5

Browse files
committed
Use \dotsc for some ellipses.
Raw period characters get confused for sentence terminators, and using \dotsc is probably better anyway.
1 parent bdd7b2e commit c0c54b5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

source/declarations.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -6061,7 +6061,7 @@
60616061

60626062
\pnum
60636063
A structured binding declaration introduces the \grammarterm{identifier}{s}
6064-
\tcode{v}$_0$, \tcode{v}$_1$, \tcode{v}$_2$, ...
6064+
\tcode{v}$_0$, \tcode{v}$_1$, \tcode{v}$_2, \dotsc$
60656065
of the
60666066
\grammarterm{identifier-list} as names\iref{basic.scope.declarative}
60676067
of \defn{structured binding}{s}.
@@ -6157,7 +6157,7 @@
61576157
the number of elements in the \grammarterm{identifier-list} shall be
61586158
equal to the number of non-static data members of \tcode{E}.
61596159
Designating the non-static data members of \tcode{E} as
6160-
\tcode{m}$_0$, \tcode{m}$_1$, \tcode{m}$_2$, ...
6160+
\tcode{m}$_0$, \tcode{m}$_1$, \tcode{m}$_2, \dotsc$
61616161
(in declaration order),
61626162
each \tcode{v}$_i$ is the
61636163
name of an lvalue that refers to the member \tcode{m}$_i$ of \tcode{e} and

source/numerics.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -7867,7 +7867,7 @@
78677867
\pnum
78687868
\begin{example}
78697869
\tcode{slice(3, 8, 2)}
7870-
constructs a slice which selects elements 3, 5, 7, ... 17 from an array.
7870+
constructs a slice which selects elements $3, 5, 7, \dotsc 17$ from an array.
78717871
\end{example}
78727872
\end{itemdescr}
78737873

@@ -7945,7 +7945,7 @@
79457945
For the slice shown, the elements
79467946
selected from
79477947
\tcode{a}
7948-
are 1, 4, ..., 13.
7948+
are $1, 4, \dotsc, 13$.
79497949
\end{example}
79507950

79517951
\rSec3[slice.arr.assign]{Assignment}

0 commit comments

Comments
 (0)