aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/relations/writes
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/relations/writes')
-rw-r--r--lib/arel/relations/writes/delete.rb2
-rw-r--r--lib/arel/relations/writes/update.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/arel/relations/writes/delete.rb b/lib/arel/relations/writes/delete.rb
index e72679c4d6..318a299b8b 100644
--- a/lib/arel/relations/writes/delete.rb
+++ b/lib/arel/relations/writes/delete.rb
@@ -8,7 +8,7 @@ module Arel
"DELETE",
"FROM #{table_sql}",
("WHERE #{wheres.collect(&:to_sql).join('\n\tAND ')}" unless wheres.blank? ),
- ("LIMIT #{taken}" unless taken.blank? ),
+ ("LIMIT #{taken}" unless taken.blank? ),
].compact.join("\n")
end
diff --git a/lib/arel/relations/writes/update.rb b/lib/arel/relations/writes/update.rb
index 18b7ad9de1..720b9d697d 100644
--- a/lib/arel/relations/writes/update.rb
+++ b/lib/arel/relations/writes/update.rb
@@ -14,7 +14,7 @@ module Arel
"#{value.format(attribute)} = #{attribute.format(value)}"
end.join(",\n"),
("WHERE #{wheres.collect(&:to_sql).join('\n\tAND ')}" unless wheres.blank? ),
- ("LIMIT #{taken}" unless taken.blank? )
+ ("LIMIT #{taken}" unless taken.blank? )
].join("\n")
end