From f5e15a309465f55441de1f719a409aa1cf97badb Mon Sep 17 00:00:00 2001 From: mathstrains21 <89940630+mathstrains21@users.noreply.github.com> Date: Tue, 16 Nov 2021 08:56:01 +0000 Subject: [PATCH] Fix typo with full stop (#512) --- concepts/characters/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/characters/introduction.md b/concepts/characters/introduction.md index 50c61d4a6..db61d3d03 100644 --- a/concepts/characters/introduction.md +++ b/concepts/characters/introduction.md @@ -65,7 +65,7 @@ Strings and Characters can be compared for equality (or lack thereof) using the ```swift let hi = "Hello" -hi == "Hello." +hi == "Hello" // => true let period: Character = "."