Skip to content

Commit dbed563

Browse files
authored
fix more console output
1 parent caed4b8 commit dbed563

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
@@ -897,7 +897,7 @@ The captured string is then passed as the argument corresponding to the target p
897897
> Test.M(123, null);
898898
> Test.M(123, "xyz");
899899
> Test.M( 1 + 2 );
900-
> Test.M( ( ((123) + 0) ) );
900+
> Test.M(( ( (123) + 0) ) );
901901
> int local = 10;
902902
> Test.M(l\u006fcal /*...*/ + // xxx
903903
> 5);
@@ -911,7 +911,7 @@ The captured string is then passed as the argument corresponding to the target p
911911
> val = 123, text = <>
912912
> val = 123, text = <xyz>
913913
> val = 3, text = <1 + 2>
914-
> val = 123, text = <((123) + 0)>
914+
> val = 123, text = <(123) + 0>
915915
> val = 15, text = <l\u006fcal /*...*/ + // xxx
916916
> 5>
917917
> ```

0 commit comments

Comments
 (0)