Skip to content

Commit 8994e07

Browse files
committed
[dcl.arrays] Remove redundant whitespace
1 parent fad3c1d commit 8994e07

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

source/declarators.tex

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,6 @@
10941094
\begin{codeblock}
10951095
float fa[17], *afp[17];
10961096
\end{codeblock}
1097-
10981097
declares an array of
10991098
\tcode{float}
11001099
numbers and an array of
@@ -1108,7 +1107,6 @@
11081107
\begin{codeblock}
11091108
int x3d[3][5][7];
11101109
\end{codeblock}
1111-
11121110
declares an array of three elements,
11131111
each of which is an array of five elements,
11141112
each of which is an array of seven integers.
@@ -1127,7 +1125,7 @@
11271125
is equivalent to
11281126
\tcode{*(x3d + i)};
11291127
in that expression,
1130-
\tcode{x3d}
1128+
\tcode{x3d}
11311129
is subject to the array-to-pointer conversion\iref{conv.array}
11321130
and is first converted to
11331131
a pointer to a 2-dimensional

0 commit comments

Comments
 (0)