From 51bbb347ec159aa677fcd01c928f4447e3d08e03 Mon Sep 17 00:00:00 2001 From: Junwoo Ji Date: Sun, 12 Apr 2020 18:28:19 +0900 Subject: [PATCH] fix typo delactation -> declaration (#33) * fix: added a missing semicolon * fix: typo delactation -> declaration --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 721fc5d..b46c78b 100644 --- a/README.md +++ b/README.md @@ -261,7 +261,7 @@ const GENRE = { projector.configureFilm(GENRE.COMEDY); class Projector { - // delactation of Projector + // declaration of Projector configureFilm(genre) { switch (genre) { case GENRE.ROMANTIC: @@ -284,7 +284,7 @@ enum GENRE { projector.configureFilm(GENRE.COMEDY); class Projector { - // delactation of Projector + // declaration of Projector configureFilm(genre) { switch (genre) { case GENRE.ROMANTIC: