From bff0655f378026f2123069803471c0231063ddba Mon Sep 17 00:00:00 2001 From: Washington Botelho Date: Thu, 16 Jan 2020 14:15:41 -0300 Subject: [PATCH] doc: update --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4230006..dc969cb 100644 --- a/README.md +++ b/README.md @@ -390,7 +390,7 @@ rating: ### Unscoped Rating -All rating values are grouped by the scope, but you can disable it and group all of them. +All rating values are grouped by its own scope, but you can disable it and group all of them together. ```ruby rating unscoped_rating: true @@ -404,7 +404,8 @@ author.rate resource, 2, scope: scope author.rate resource, 3 ``` -Now the `sum` will be `6` and the `total` will be `3` because all rating will be calculated into just one rating record ignoring the `scopeable` object. The rating record is always saved on the record with `scopeable` as `nil`. +Now the `sum` will be `6` and the `total` will be `3` because all rating will be calculated into just one rating record ignoring the `scopeable` object. +The rating record is *always* saved on the record with `scopeable` as `nil`. ### where