Skip to content

Commit 15b519b

Browse files
committed
Whitespace
1 parent b0852ab commit 15b519b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

specification/dartLangSpec.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1713,7 +1713,7 @@ \subsection{Evaluation of Implicit Variable Getters}
17131713

17141714
\begin{dartCode}
17151715
bool b = \TRUE;
1716-
int i = (() => (b = !b) ? (i = 10) : i + 1 )();
1716+
int i = (() => (b = !b) ? (i = 10) : i + 1)();
17171717
\\
17181718
\VOID{} main() \{
17191719
print(i); // '11'.
@@ -16675,7 +16675,7 @@ \subsection{If-null Expressions}
1667516675
\end{grammar}
1667616676

1667716677
\LMHash{}%
16678-
Consider an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}.
16678+
Consider an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}.
1667916679
Let $S$ be the static type of $e_1$.
1668016680
A warning occurs if $S$ is non-nullable.
1668116681
\commentary{In this case, the \lit{??} is superfluous.}
@@ -16684,7 +16684,7 @@ \subsection{If-null Expressions}
1668416684
of \NonNullType{$S$} and the static type of $e_2$.
1668516685

1668616686
\LMHash{}%
16687-
Evaluation of an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}
16687+
Evaluation of an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}
1668816688
proceeds as follows:
1668916689

1669016690
\LMHash{}%

0 commit comments

Comments
 (0)