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