lib/fixtury/errors/circular_dependency_error.rb in fixtury-0.1.0.alpha vs lib/fixtury/errors/circular_dependency_error.rb in fixtury-0.1.0.alpha2
- old
+ new
@@ -3,10 +3,10 @@
module Fixtury
module Errors
class CircularDependencyError < ::StandardError
def initialize(name)
- super("One of the depdencies of #{name} is dependent on #{name}.")
+ super("One of the dependencies of #{name} is dependent on #{name}.")
end
end
end
end