Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[dcl.struct.bind,numarray] Use '\dotsc' for comma-separated lists #2539

Merged
merged 1 commit into from
Nov 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/declarations.tex
Original file line number Diff line number Diff line change
Expand Up @@ -6165,7 +6165,7 @@

\pnum
A structured binding declaration introduces the \grammarterm{identifier}{s}
\tcode{v}$_0$, \tcode{v}$_1$, \tcode{v}$_2$, ...
$\tcode{v}_0$, $\tcode{v}_1$, $\tcode{v}_2, \dotsc$
of the
\grammarterm{identifier-list} as names\iref{basic.scope.declarative}
of \defn{structured binding}{s}.
Expand Down Expand Up @@ -6263,7 +6263,7 @@
the number of elements in the \grammarterm{identifier-list} shall be
equal to the number of non-static data members of \tcode{E}.
Designating the non-static data members of \tcode{E} as
\tcode{m}$_0$, \tcode{m}$_1$, \tcode{m}$_2$, ...
$\tcode{m}_0$, $\tcode{m}_1$, $\tcode{m}_2, \dotsc$
(in declaration order),
each \tcode{v}$_i$ is the
name of an lvalue that refers to the member \tcode{m}$_i$ of \tcode{e} and
Expand Down
4 changes: 2 additions & 2 deletions source/numerics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -7835,7 +7835,7 @@
\pnum
\begin{example}
\tcode{slice(3, 8, 2)}
constructs a slice which selects elements 3, 5, 7, ... 17 from an array.
constructs a slice which selects elements $3, 5, 7, \dotsc, 17$ from an array.
\end{example}
\end{itemdescr}

Expand Down Expand Up @@ -7913,7 +7913,7 @@
For the slice shown, the elements
selected from
\tcode{a}
are 1, 4, ..., 13.
are $1, 4, \dotsc, 13$.
\end{example}

\rSec3[slice.arr.assign]{Assignment}
Expand Down