diff --git a/docs/src/docs/asciidoc/domainClasses/gormAssociation/manyToOneAndOneToOne.adoc b/docs/src/docs/asciidoc/domainClasses/gormAssociation/manyToOneAndOneToOne.adoc index a53532f4d..ffe6dca20 100644 --- a/docs/src/docs/asciidoc/domainClasses/gormAssociation/manyToOneAndOneToOne.adoc +++ b/docs/src/docs/asciidoc/domainClasses/gormAssociation/manyToOneAndOneToOne.adoc @@ -208,7 +208,7 @@ class Review { } ---- -The cascade behaviour takes cares of deleting every orphan `Review`. Thus, invoking `.clear()` suffices to remove the book' previous reviews. +The cascade behaviour takes cares of deleting every orphan `Review`. Thus, invoking `.clear()` suffices to remove the book's previous reviews. [source,groovy] ---- @@ -218,4 +218,4 @@ Book replaceReviews(Serializable idParam, List newReviews) { newReviews.each { book.addToReviews(it) } book.save() } ----- \ No newline at end of file +----