Skip to content

Commit ac2924a

Browse files
authored
fix: console.log の出力結果に関するコメントの書き方を修正 (#1564)
1 parent ea85de0 commit ac2924a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/basic/operator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@ console.log(addPrefix("文字列", "カスタム:")); // => "カスタム:文字
10691069
const a = 1;
10701070
const b = 2;
10711071
const c = 3;
1072-
console.log(a + b * c); // 7
1072+
console.log(a + b * c); // => 7
10731073
console.log((a + b) * c); // => 9
10741074
```
10751075

0 commit comments

Comments
 (0)