From 28e9e08e7ee604bdf87acf6d9343816b30878b76 Mon Sep 17 00:00:00 2001
From: alanbjohnston <alan.b.johnston@gmail.com>
Date: Sat, 2 May 2020 13:40:28 -0400
Subject: [PATCH] Fixed bug in Morse Code for 'I'

---
 morse.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/morse.c b/morse.c
index df0038d8..851de72e 100644
--- a/morse.c
+++ b/morse.c
@@ -70,7 +70,7 @@ static const struct morse_s {
 	{ 'F', "..-." },
 	{ 'G', "--." },
 	{ 'H', "...." },
-	{ 'I', "." },
+	{ 'I', ".." },
 	{ 'J', ".---" },
 	{ 'K', "-.-" },
 	{ 'L', ".-.." },