fix: typo delactation -> declaration

This commit is contained in:
Jon Jee 2020-04-12 18:20:44 +09:00
parent 728585b35e
commit 43f024d152

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: