From 822e05df8e2806bad6ebffcfe4f23e9720463b6e Mon Sep 17 00:00:00 2001 From: Piotr Szotkowski Date: Mon, 1 Jan 2018 15:49:34 +0100 Subject: [PATCH] Fix invalid UTF-8 byte sequence spec typo --- spec/std/string_spec.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/std/string_spec.cr b/spec/std/string_spec.cr index ddf4bdabd67d..5a2cd00b978a 100644 --- a/spec/std/string_spec.cr +++ b/spec/std/string_spec.cr @@ -2347,7 +2347,7 @@ describe "String" do end end - describe "invalide utf-8 byte sequence" do + describe "invalid UTF-8 byte sequence" do it "gets size" do string = String.new(Bytes[255, 0, 0, 0, 65]) string.size.should eq(5)