lib/rom/sql/extensions/postgres/commands.rb in rom-sql-2.3.0 vs lib/rom/sql/extensions/postgres/commands.rb in rom-sql-2.4.0
- old
+ new
@@ -60,10 +60,10 @@
end
end
# Upsert command
#
- # The command beign called attempts to insert a record and
+ # The command being called attempts to insert a record and
# if the inserted row would violate a unique constraint
# updates the conflicting row (or silently does nothing).
# A very important implementation detail is that the whole operation
# is serializable, i.e. aware of concurrent transactions, and doesn't raise
# exceptions and doesn't issue missing updates once used properly.