From c19c873b02433c05ee758e81a6bf3077082fd794 Mon Sep 17 00:00:00 2001 From: Nathan McRae Date: Wed, 8 May 2024 19:37:45 -0700 Subject: [PATCH] Fix '-' code --- morse-code_files/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morse-code_files/constants.js b/morse-code_files/constants.js index 577cc6d..6a5265b 100644 --- a/morse-code_files/constants.js +++ b/morse-code_files/constants.js @@ -40,7 +40,7 @@ const MORSE_MAP = { '!': '-.-.--', '=': '-...-', '+': '.-.-.', - '-': '-...-' + '-': '-....-' }; const REVERSE_MORSE_MAP = function() {