From 8cfed440ed8e10dc2666a3f2d08c7d9e6f31b2d0 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sat, 4 Jan 2020 12:45:49 -0700 Subject: [PATCH] Fix typo with be_a matcher --- src/spectator/matchers/type_matcher.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spectator/matchers/type_matcher.cr b/src/spectator/matchers/type_matcher.cr index 4b7aff3..f8401d4 100644 --- a/src/spectator/matchers/type_matcher.cr +++ b/src/spectator/matchers/type_matcher.cr @@ -8,7 +8,7 @@ module Spectator::Matchers # This explains what condition satisfies the matcher. # The description is used when the one-liner syntax is used. def description : String - "is as #{Expected}" + "is a #{Expected}" end # Checks whether the matcher is satisifed with the expression given to it.