mirror of
https://github.com/labs42io/clean-code-typescript.git
synced 2025-04-18 15:13:34 +00:00
fix: typo delactation -> declaration
This commit is contained in:
parent
728585b35e
commit
43f024d152
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue