Skip to content

Commit

Permalink
Merge pull request #1770 from yasslab/remove_A_from_association_basic…
Browse files Browse the repository at this point in the history
…s_note

association_basics で不要な A をカット
  • Loading branch information
rakuda-san-desu authored Nov 15, 2024
2 parents 681c2a8 + 49b746b commit 5b54282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guides/source/ja/association_basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ irb> raise_validation_error: Validation failed: Name can't be blank (ActiveRecor
@book.author_previously_changed? # => true
```

NOTE: A`model.association_changed?``model.association.changed?`を取り違えないようご注意ください。前者の`model.association_changed?`は、その関連付けが新しいレコードで置き換えられたかどうかをチェックしますが、後者の`model.association.changed?`は関連付けの「属性」が変更されたかどうかをチェックします。
NOTE: `model.association_changed?``model.association.changed?`を取り違えないようご注意ください。前者の`model.association_changed?`は、その関連付けが新しいレコードで置き換えられたかどうかをチェックしますが、後者の`model.association.changed?`は関連付けの「属性」が変更されたかどうかをチェックします。

##### 既存の関連付けが存在するかどうかをチェックする

Expand Down

0 comments on commit 5b54282

Please sign in to comment.