Skip to content

Commit bb80fef

Browse files
committed
spelling fix, destructring -> destructuring
1 parent 5d59b5e commit bb80fef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/expressions/operator-expr.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ An assignment expression consists of a [mutable] [assignee expression], the *ass
701701
r[expr.assign.behavior-basic]
702702
In its most basic form, an assignee expression is a [place expression], and we discuss this case first.
703703

704-
r[expr.assign.behavior-destructring]
704+
r[expr.assign.behavior-destructuring]
705705
The more general case of destructuring assignment is discussed below, but this case always decomposes into sequential assignments to place expressions, which may be considered the more fundamental case.
706706

707707
r[expr.assign.basic]
@@ -711,7 +711,7 @@ r[expr.assign.evaluation-order]
711711
Evaluating assignment expressions begins by evaluating its operands.
712712
The assigned value operand is evaluated first, followed by the assignee expression.
713713

714-
r[expr.assign.destructring-order]
714+
r[expr.assign.destructuring-order]
715715
For destructuring assignment, subexpressions of the assignee expression are evaluated left-to-right.
716716

717717
> [!NOTE]

0 commit comments

Comments
 (0)