Wrong usage of 'a' in docs fixed [ci skip]

This commit is contained in:
Mehmet Emin İNAÇ 2015-10-03 23:39:31 +03:00
parent 55ac94cec4
commit c4cc3be0d9
5 changed files with 5 additions and 5 deletions

@ -458,7 +458,7 @@ def explain(arel, binds = [])
end
class ExplainPrettyPrinter # :nodoc:
# Pretty prints the result of a EXPLAIN in a way that resembles the output of the
# Pretty prints the result of an EXPLAIN in a way that resembles the output of the
# MySQL shell:
#
# +----+-------------+-------+-------+---------------+---------+---------+-------+------+-------------+

@ -8,7 +8,7 @@ def explain(arel, binds = [])
end
class ExplainPrettyPrinter # :nodoc:
# Pretty prints the result of a EXPLAIN in a way that resembles the output of the
# Pretty prints the result of an EXPLAIN in a way that resembles the output of the
# PostgreSQL shell:
#
# QUERY PLAN

@ -218,7 +218,7 @@ def explain(arel, binds = [])
end
class ExplainPrettyPrinter
# Pretty prints the result of a EXPLAIN QUERY PLAN in a way that resembles
# Pretty prints the result of an EXPLAIN QUERY PLAN in a way that resembles
# the output of the SQLite shell:
#
# 0|0|0|SEARCH TABLE users USING INTEGER PRIMARY KEY (rowid=?) (~1 rows)

@ -62,7 +62,7 @@ def reflect_on_aggregation(aggregation)
aggregate_reflections[aggregation.to_s]
end
# Returns a Hash of name of the reflection as the key and a AssociationReflection as the value.
# Returns a Hash of name of the reflection as the key and an AssociationReflection as the value.
#
# Account.reflections # => {"balance" => AggregateReflection}
#

@ -6,7 +6,7 @@ def load(source)
if exc.message.match(%r|undefined class/module (.+)|)
# try loading the class/module
$1.constantize
# if it is a IO we need to go back to read the object
# if it is an IO we need to go back to read the object
source.rewind if source.respond_to?(:rewind)
retry
else