Merge pull request #43715 from Cofense/activerecord-relation-calculations-doc-comment-continuation

Add missing comment char to RDoc comment [ci skip]
This commit is contained in:
Gannon McGibbon 2021-11-24 12:12:01 -05:00 committed by GitHub
commit 4b6ac01fbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ module ActiveRecord
#
# Article.group(:status, :category).count
# # => {["draft", "business"]=>10, ["draft", "technology"]=>4,
# ["published", "business"]=>0, ["published", "technology"]=>2}
# # ["published", "business"]=>0, ["published", "technology"]=>2}
#
# If #count is used with {Relation#select}[rdoc-ref:QueryMethods#select], it will count the selected columns:
#