From 7823656a4c54c5050cf7eda467bac5b08363cbf7 Mon Sep 17 00:00:00 2001 From: Giedrius Rimkus Date: Sun, 16 Jun 2024 21:52:40 +0300 Subject: [PATCH] Update display-scope-record-count.md Typos --- docs/3.0/guides/display-scope-record-count.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/3.0/guides/display-scope-record-count.md b/docs/3.0/guides/display-scope-record-count.md index b1931702..9373e167 100644 --- a/docs/3.0/guides/display-scope-record-count.md +++ b/docs/3.0/guides/display-scope-record-count.md @@ -5,7 +5,7 @@ The `name` and `description` scope options can be callable values and receive th The `query` object is the actual Active Record query (unscoped) that is made to fetch the records. There is also possible to access the `scoped_query` method that will return the `query` after applying the `scope`. -You my use that to display a counter of how many record are there in that scope. Notice that it can impact page loading time when applying on large data tables. +You may use that to display a counter of how many records are there in that scope. Notice that it can impact page loading time when applying on large data tables. ### Example