Skip to content

Commit 6a16862

Browse files
committed
Fixed incorrectly placed back-tick, causing the sigil to fall outside the formatted code.
1 parent a610388 commit 6a16862

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/php-spec-draft.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8599,7 +8599,7 @@ expressions are equivalent; that is; when handling `p->m` in a non-lvalue
85998599
context, if no visible property by that name is found, a dynamic
86008600
property is assumed, and `__get` is called.
86018601

8602-
Consider the expression $`v = $p->m = 5`, where `m` is a dynamic
8602+
Consider the expression `$v = $p->m = 5`, where `m` is a dynamic
86038603
property. While `__set` ([§§](#method-__set)) is called to assign the value 5 to
86048604
that property, `__get` is not called to retrieve the result after that
86058605
assignment is complete.

0 commit comments

Comments
 (0)