diff --git a/src/pages/cli/020-common-commands.mdx b/src/pages/cli/020-common-commands.mdx index 6f64c26..4eef1ef 100644 --- a/src/pages/cli/020-common-commands.mdx +++ b/src/pages/cli/020-common-commands.mdx @@ -366,7 +366,8 @@ [絶対パス](#絶対パス-absolute-path)ではないパス全般を指すとも言えます。 ```bash frame=terminal -$ pwd /home +$ pwd +/home $ cat user/sample.txt これは、ホームディレクトリにあるsample.txtの内容です。 $ cat ./user/sample.txt diff --git a/src/pages/html/010-my-first-html.mdx b/src/pages/html/010-my-first-html.mdx index ab4b94c..fc7bc00 100644 --- a/src/pages/html/010-my-first-html.mdx +++ b/src/pages/html/010-my-first-html.mdx @@ -127,4 +127,4 @@ 今回登場したタグの他にも、様々なタグが存在します。 主要なものをTipsにまとめてありますので、ぜひ参考にしてください。 -[いろいろなタグ](../tips/tag) +[いろいろなタグ](/reference/tag) diff --git a/src/pages/js/020-if.mdx b/src/pages/js/020-if.mdx index 8d1814e..fae7ad3 100644 --- a/src/pages/js/020-if.mdx +++ b/src/pages/js/020-if.mdx @@ -157,7 +157,7 @@ const temperature = 25; // 快適な気温を18度以上25度以下として、そうではない場合を判定 -if (!(temprature >= 18 && temperature <= 25)) { +if (!(temperature >= 18 && temperature <= 25)) { console.log("快適な気温ではありません"); } ```