diff --git a/README.md b/README.md index 6b04f6a..f53fd30 100644 --- a/README.md +++ b/README.md @@ -13,10 +13,10 @@ # Konstructor Multiple constructors in a idiomatic Ruby -way. Small, fast, doesn't depend on other gems, thread-safe. +way. Small, fast, thread-safe, doesn't depend on other gems. Use `konstructor` keyword to declare constructors additional -to the defaul one: +to the default one: ```ruby class SomeClass konstructor diff --git a/spec/gem_conflicts/active_support_subscriber_spec.rb b/spec/gem_conflicts/active_support_subscriber_spec.rb index 3e5b245..fd8c462 100644 --- a/spec/gem_conflicts/active_support_subscriber_spec.rb +++ b/spec/gem_conflicts/active_support_subscriber_spec.rb @@ -31,7 +31,7 @@ def after_attached(event) end end - context "method defined after attaching continue to work" do + context "method defined after attaching continues to work" do let(:instance) do ActiveSupport::Notifications.instrument('before_attached.test_namespace', one: 111) ActiveSupport::Notifications.instrument('after_attached.test_namespace', two: 2)