Skip to content

Commit 526e919

Browse files
authored
Merge pull request #575 from ut-code/fix-broken-codeblock
Fix broken codeblock
2 parents 2c62af2 + 4c6b829 commit 526e919

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/2-browser-apps/03-class/index.mdx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -394,8 +394,9 @@ document.write(false.toString()); // false
394394

395395
21時25分40秒に実行されたとき、
396396

397-
````
398-
397+
```
398+
今日は残り2時間34分20秒です。
399+
```
399400

400401
と表示する
401402

@@ -415,7 +416,7 @@ const remainingHours = 23 - now.getHours();
415416
const remainingMinutes = 59 - now.getMinutes();
416417
const remainingSeconds = 60 - now.getSeconds();
417418
countdownBox.textContent = `今日は残り${remainingHours}時間 ${remainingMinutes}${remainingSeconds}秒です。`;
418-
````
419+
```
419420

420421
<ViewSource url={import.meta.url} path="_samples/count-down" />
421422

0 commit comments

Comments
 (0)