Skip to content

Commit 51bbb34

Browse files
authored
fix typo delactation -> declaration (labs42io#33)
* fix: added a missing semicolon * fix: typo delactation -> declaration
1 parent 378805c commit 51bbb34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ const GENRE = {
261261
projector.configureFilm(GENRE.COMEDY);
262262

263263
class Projector {
264-
// delactation of Projector
264+
// declaration of Projector
265265
configureFilm(genre) {
266266
switch (genre) {
267267
case GENRE.ROMANTIC:
@@ -284,7 +284,7 @@ enum GENRE {
284284
projector.configureFilm(GENRE.COMEDY);
285285

286286
class Projector {
287-
// delactation of Projector
287+
// declaration of Projector
288288
configureFilm(genre) {
289289
switch (genre) {
290290
case GENRE.ROMANTIC:

0 commit comments

Comments
 (0)