Skip to content

Commit d493301

Browse files
committedApr 8, 2024
fix problem: strings
1 parent 27ddd36 commit d493301

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed
 

‎.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/problems/strings/problem_ja.md

‎problems/strings/problem_ja.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
**文字列**は引用符でくくった値です。
1+
**文字列** は引用符でくくった値です。
22

33
引用符は一重引用符と二重引用符のどちらも使えます。例えば...
44

55
```js
6-
"this is a string";
6+
'this is a string';
77

88
"this is also a string";
99
```
1010

1111
## 注意
1212

13-
どちらかの引用符を使うルールを決め、守りましょう。 このワークショップでは一重引用符だけを使います。
13+
どちらかの引用符を使うルールを決め、守りましょう。
14+
このワークショップでは二重引用符だけを使います。
1415

1516
## やってみよう
1617

‎problems/strings/solution_ja.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
文字列の使い方に慣れてきました。
55

6-
次の課題では文字列の編集を扱います
6+
次の課題では文字列の結合を扱います
77

88
コンソールで `javascripting` コマンドを実行します。次の課題を選択しましょう。
99
---

0 commit comments

Comments
 (0)