mirror of
https://github.com/labs42io/clean-code-typescript.git
synced 2024-11-23 05:34:04 +00:00
fix typo delactation -> declaration (#33)
* fix: added a missing semicolon * fix: typo delactation -> declaration
This commit is contained in:
parent
378805c358
commit
51bbb347ec
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue