Skip to content

Commit 32a67bf

Browse files
authored
Merge pull request #367 from ut-code/format-all-documents
Format all documents
2 parents 9195283 + 536a146 commit 32a67bf

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

docs/4-advanced/03-typescript/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -410,9 +410,9 @@ Vite は、標準で TypeScript のトランスパイラが内蔵されていま
410410
4. 以下のコード
411411

412412
```typescript
413-
function apply<T, U>(f: (x: T) => U, x: T): U {
414-
return f(x);
415-
}
413+
function apply<T, U>(f: (x: T) => U, x: T): U {
414+
return f(x);
415+
}
416416
```
417417

418418
<ViewSource url={import.meta.url} path="_samples/apply" noCodeSandbox />

docs/6-exercise/11-react/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import ViewSource from "@site/src/components/ViewSource";
99
この章では教材の「[React](../../4-advanced/04-react/index.md)」の内容を扱っています。
1010

1111
---
12+
1213
## ToDo リスト
1314

1415
以下のような本格的な ToDo リストを作ってみましょう。

docs/6-exercise/4-css/_samples/1_fixed/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ h3 {
7272
margin: 10px;
7373
padding: 10px;
7474
font-size: 30px;
75-
}
75+
}

docs/6-exercise/7-get-and-post/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import Details from "@theme/Details";
1212
この章では教材の「[フォーム](../../3-web-servers/06-form/index.md)」「[GET リクエストと POST リクエスト](../../3-web-servers/07-get-post/index.md)」の内容を扱っています。
1313

1414
---
15+
1516
## ユーザ名とパスワードを入力してログイン
1617

1718
ユーザ名とパスワードを入力してログインするサイトを作ってみましょう。

src/components/Term/definitions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ export default {
291291
definition:
292292
"イベント発生時の処理を行う仕組み。onclick 関数、onload 関数など、on キーワードにイベント名をつけた名称になっている。",
293293
referencePage: "/docs/trial-session/events/",
294-
},
294+
},
295295
javascriptClass: {
296296
name: "クラス (JavaScript)",
297297
definition:

0 commit comments

Comments
 (0)