We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caed4b8 commit dbed563Copy full SHA for dbed563
1 file changed
standard/attributes.md
@@ -897,7 +897,7 @@ The captured string is then passed as the argument corresponding to the target p
897
> Test.M(123, null);
898
> Test.M(123, "xyz");
899
> Test.M( 1 + 2 );
900
-> Test.M( ( ((123) + 0) ) );
+> Test.M(( ( (123) + 0) ) );
901
> int local = 10;
902
> Test.M(l\u006fcal /*...*/ + // xxx
903
> 5);
@@ -911,7 +911,7 @@ The captured string is then passed as the argument corresponding to the target p
911
> val = 123, text = <>
912
> val = 123, text = <xyz>
913
> val = 3, text = <1 + 2>
914
-> val = 123, text = <((123) + 0)>
+> val = 123, text = <(123) + 0>
915
> val = 15, text = <l\u006fcal /*...*/ + // xxx
916
> 5>
917
> ```
0 commit comments