Skip to content

Commit

Permalink
Merge pull request #1786 from hasse09052/patch-2
Browse files Browse the repository at this point in the history
fix active_record_validations.md
  • Loading branch information
yasulab authored Dec 2, 2024
2 parents 91f9306 + af377bc commit 612cb51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guides/source/ja/active_record_validations.md
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ end

デフォルトのエラーメッセージは「is invalid」です。

WARNING: **文字列**の冒頭や末尾にマッチさせるためには`A``\z`を使い、`^``$`は、**1行**の冒頭や末尾にマッチさせる場合に使うこと。`A``\z`を使うべき場合に`^``$`を使う誤用が頻発しているため、`^``$`を使う場合は`multiline: true`オプションを渡す必要があります。ほとんどの場合、必要なのは`\A``\z`です。
WARNING: **文字列**の冒頭や末尾にマッチさせるためには`\A``\z`を使い、`^``$`は、**1行**の冒頭や末尾にマッチさせる場合に使うこと。`\A``\z`を使うべき場合に`^``$`を使う誤用が頻発しているため、`^``$`を使う場合は`multiline: true`オプションを渡す必要があります。ほとんどの場合、必要なのは`\A``\z`です。

### `inclusion`

Expand Down

0 comments on commit 612cb51

Please sign in to comment.