fix typo delactation -> declaration (#33)

* fix: added a missing semicolon

* fix: typo delactation -> declaration
This commit is contained in:
Junwoo Ji 2020-04-12 18:28:19 +09:00 committed by GitHub
parent 378805c358
commit 51bbb347ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: