We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 169d6f8 commit 3ad9410Copy full SHA for 3ad9410
1 file changed
standard/attributes.md
@@ -933,7 +933,7 @@ The captured string is then passed as the argument corresponding to the target p
933
> Test.M(123, null);
934
> Test.M(123, "xyz");
935
> Test.M( 1 + 2 );
936
-> Test.M( ( ((123) + 0) ) );
+> Test.M(( ( (123) + 0) ) );
937
> int local = 10;
938
> Test.M(l\u006fcal /*...*/ + // xxx
939
> 5);
@@ -947,7 +947,7 @@ The captured string is then passed as the argument corresponding to the target p
947
> val = 123, text = <>
948
> val = 123, text = <xyz>
949
> val = 3, text = <1 + 2>
950
-> val = 123, text = <((123) + 0)>
+> val = 123, text = <(123) + 0>
951
> val = 15, text = <l\u006fcal /*...*/ + // xxx
952
> 5>
953
> ```
0 commit comments