Skip to content

Commit d62aa45

Browse files
authored
Merge pull request #420 from ut-code/format-all-code
Format all code
2 parents bc49639 + 0dc6fc1 commit d62aa45

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

docs/1-trial-session/08-loop/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ i++;
104104

105105
:::
106106

107-
108107
## for 文
109108

110109
`for` 文は、`while` 文にほんの少しだけ機能を追加したものになります。

docs/1-trial-session/14-events/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,4 @@ HTMLファイルに一工夫が必要です。見えない`<div>` タグを用
107107

108108
</Details>
109109

110-
<ViewSource url={import.meta.url} path="_samples/project-jack-in-a-box/" />
110+
<ViewSource url={import.meta.url} path="_samples/project-jack-in-a-box/" />

docs/3-web-servers/04-server/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ app.listen(3000);
221221
```
222222

223223
```html title=template.ejs
224-
<!DOCTYPE html>
224+
<!doctype html>
225225
<html lang="ja">
226226
<head>
227227
<meta charset="utf-8" />

src/components/ViewSource/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ export default function ViewSource({ url, path, noCodeSandbox }) {
1919
const commitRef = useDocusaurusContext()?.siteConfig.customFields.commitRef;
2020
const gitHubUrl = new URL(
2121
path,
22-
`https://github.com/ut-code/utcode-learn/tree/${commitRef}/${basePath}`
22+
`https://github.com/ut-code/utcode-learn/tree/${commitRef}/${basePath}`,
2323
);
2424
const codeSandboxUrl = new URL(
2525
path,
26-
`https://githubbox.com/ut-code/utcode-learn/tree/${commitRef}/${basePath}`
26+
`https://githubbox.com/ut-code/utcode-learn/tree/${commitRef}/${basePath}`,
2727
);
2828
return (
2929
<div className={styles.root}>

0 commit comments

Comments
 (0)