Skip to content

Commit 3ad9410

Browse files
RexJaeschkeBillWagner
authored andcommitted
fix more console output
1 parent 169d6f8 commit 3ad9410

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

standard/attributes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,7 @@ The captured string is then passed as the argument corresponding to the target p
933933
> Test.M(123, null);
934934
> Test.M(123, "xyz");
935935
> Test.M( 1 + 2 );
936-
> Test.M( ( ((123) + 0) ) );
936+
> Test.M(( ( (123) + 0) ) );
937937
> int local = 10;
938938
> Test.M(l\u006fcal /*...*/ + // xxx
939939
> 5);
@@ -947,7 +947,7 @@ The captured string is then passed as the argument corresponding to the target p
947947
> val = 123, text = <>
948948
> val = 123, text = <xyz>
949949
> val = 3, text = <1 + 2>
950-
> val = 123, text = <((123) + 0)>
950+
> val = 123, text = <(123) + 0>
951951
> val = 15, text = <l\u006fcal /*...*/ + // xxx
952952
> 5>
953953
> ```

0 commit comments

Comments
 (0)