Skip to content

Commit a53c46f

Browse files
committed
Fix typos in Japanese documentation for input class usage and HTML forms
1 parent a777194 commit a53c46f

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

docs/prompts/README.ja.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
## 使い方
66

77
### input-class-generator.md
8-
-
98
- Inputクラスの自動生成やリファクタリングをAIに依頼する際に、このプロンプトを与えてください。
109
- 既存のフラットなパラメータリストを構造化されたInputオブジェクトへ変換したい場合に活用します。
11-
- 例:
1210

13-
- ```html
11+
例:
12+
13+
```html
1414
<!-- このHTMLフォームからInputクラスを生成してください -->
1515
<form>
1616
<input name="user_name" type="text">
@@ -21,10 +21,10 @@
2121
```
2222

2323
### usage-generator.md
24-
-
2524
- Inputクラスの利用例や、Ray.MediaQuery・BEAR.Resourceとの連携例をAIに生成させたい場合に、このプロンプトを与えてください。
2625
- Inputクラスの使い方や実装例を知りたい場合に活用します。
27-
- 例:
26+
27+
例:
2828

2929
```php
3030
final class UserRegistrationInput
@@ -52,7 +52,8 @@ final class ProfileInput
5252
#[Input] public readonly string $lastName,
5353
#[Input] public readonly ?string $displayName = null
5454
) {}
55-
}```
55+
}
56+
```
5657

5758
---
5859

docs/sample-data/html-forms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@
335335
<fieldset>
336336
<legend>技術スキル</legend>
337337
<div>
338-
<h4>プログラミング言語(複数選択可)</h4>
338+
<h4>プログラミング言語(複数選��可)</h4>
339339
<input name="programming_languages[]" type="checkbox" value="javascript">
340340
<label>JavaScript</label>
341341

@@ -410,7 +410,7 @@
410410
<fieldset>
411411
<legend>応募動機</legend>
412412
<textarea name="motivation" placeholder="当社への応募動機を教えてください" required></textarea>
413-
<textarea name="career_goals" placeholder="今後のキャリアゴールについて教えてください"></textarea>
413+
<textarea name="career_goals" placeholder="今後のキャリア��ールについて教えてください"></textarea>
414414
</fieldset>
415415

416416
<!-- 添付ファイル -->

0 commit comments

Comments
 (0)