You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The doubleLineAllowed property could lead to misinterpretations. One could think that this allows the following if code:
if (bool_expression)
expression
else
expression
when instead is allowing:
if (bool_expression) expression
else expression
To avoid this kinds of misunderstandings the documentation should provide examples.
The text was updated successfully, but these errors were encountered:
The doubleLineAllowed property could lead to misinterpretations. One could think that this allows the following if code:
if (bool_expression)
expression
else
expression
when instead is allowing:
if (bool_expression) expression
else expression
To avoid this kinds of misunderstandings the documentation should provide examples.
The text was updated successfully, but these errors were encountered: