Skip to content

Commit cdd60e1

Browse files
author
Allajah
committed
Fix texts 内挿 -> 補間
1 parent 578f45e commit cdd60e1

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

aio-ja/content/tutorial/toh-pt0.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<code-example language="sh" class="code-shell">
1616
ng new angular-tour-of-heroes
17-
</code-example>
17+
</code-example>
1818

1919
Angular CLIが、デフォルトのアプリケーションとサポートファイルを持つ新しいプロジェクトを作成しました。
2020

@@ -26,7 +26,7 @@ Angular CLIが、デフォルトのアプリケーションとサポートファ
2626
cd angular-tour-of-heroes
2727
ng serve --open
2828
</code-example>
29-
29+
3030
<div class="l-sub-section">
3131

3232
`ng serve`コマンドはアプリケーションをビルド、開発用サーバーを起動し、ソースファイルを監視します。
@@ -66,12 +66,12 @@ _コンポーネント_ はAngularアプリケーションの基礎的な構成
6666
Angular CLIにより生成されたデフォルトのテンプレートを削除してください。
6767
代わりに以下のHTMLを配置してください。
6868

69-
<code-example path="toh-pt0/src/app/app.component.html"
69+
<code-example path="toh-pt0/src/app/app.component.html"
7070
title="app.component.html (template)" linenums="false">
7171
</code-example>
7272

73-
二重の波括弧はAngularの*内挿バインディング*の構文です。
74-
この内挿バインディングはコンポーネントの`title`プロパティの値を、HTMLのheaderタグの中に渡します。
73+
二重の波括弧はAngularの*補間バインディング*の構文です。
74+
この補間バインディングはコンポーネントの`title`プロパティの値を、HTMLのheaderタグの中に渡します。
7575

7676
ブラウザがページを更新し、新しいアプリケーションのタイトルが表示されます。
7777

@@ -103,8 +103,8 @@ CLIはこの目的のために、空の`styles.css`を生成しました。
103103
<code-pane title="src/app/app.component.html" path="toh-pt0/src/app/app.component.html">
104104
</code-pane>
105105

106-
<code-pane
107-
title="src/styles.css (excerpt)"
106+
<code-pane
107+
title="src/styles.css (excerpt)"
108108
path="toh-pt0/src/styles.1.css">
109109
</code-pane>
110110
</code-tabs>
@@ -113,5 +113,4 @@ CLIはこの目的のために、空の`styles.css`を生成しました。
113113

114114
* Angular CLIを用いて初期アプリケーションの骨組みを作成しました。
115115
* Angularのコンポーネントがデータを表示することを学びました。
116-
* アプリケーションのタイトルを表示するために二重波カッコによる内挿を使いました。
117-
116+
* アプリケーションのタイトルを表示するために二重波カッコによる補間を使いました。

0 commit comments

Comments
 (0)