Skip to content

Commit 300e99f

Browse files
authored
Merge pull request #2158 from tshepang/patch-4
expr.paren.evaluation: fix and make more simple
2 parents 5fcb9cc + cff8032 commit 300e99f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/expressions/grouped-expr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ r[expr.paren.evaluation]
1313
Parenthesized expressions evaluate to the value of the enclosed operand.
1414

1515
r[expr.paren.place-or-value]
16-
Unlike other expressions, parenthesized expressions are both [place expressions and value expressions][place]. When the enclosed operand is a place expression, it is a place expression and when the enclosed operand is a value expression, it is a value expression.
16+
A parenthesized expression is a [place expression][place] if the enclosed operand is a place expression, and is a value expression if the enclosed operand is a value expression.
1717

1818
r[expr.paren.override-precedence]
1919
Parentheses can be used to explicitly modify the precedence order of subexpressions within an expression.

0 commit comments

Comments
 (0)