1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add missing comment char to RDoc comment

This fixes incorrect rendering in the generated documentation.

on-behalf-of: @Cofense <oss@cofense.com>
This commit is contained in:
Eddie Lebow 2021-11-24 10:54:55 -05:00
parent 89b1cc4818
commit 3e05aa27c6
No known key found for this signature in database
GPG key ID: 6398DE4540F3BB49

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:
#