From 197a1dfd07b777794227406223c2140c6b836b9a Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Tue, 15 Sep 2020 14:24:51 +0100 Subject: [PATCH] Update manyToOneAndOneToOne.adoc - minor typo --- .../domainClasses/gormAssociation/manyToOneAndOneToOne.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +----