From 1a26069723f0478db49e60a08a87d2f8e9cef66c Mon Sep 17 00:00:00 2001 From: Dima Lashkov Date: Thu, 2 Feb 2017 16:01:46 +0200 Subject: [PATCH] Fix readme typo --- README.md | 4 ++-- spec/gem_conflicts/active_support_subscriber_spec.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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)