diff options
Diffstat (limited to 'recipeBuddy/src/app/DataModels/step.ts')
-rw-r--r-- | recipeBuddy/src/app/DataModels/step.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipeBuddy/src/app/DataModels/step.ts b/recipeBuddy/src/app/DataModels/step.ts index 1c1ca7b..67e14c1 100644 --- a/recipeBuddy/src/app/DataModels/step.ts +++ b/recipeBuddy/src/app/DataModels/step.ts @@ -2,7 +2,7 @@ export class Step { private instruction: string; private timer: number; - public contructor(instruction: string, timer: number) { + public constructor(instruction: string, timer: number) { this.instruction = instruction; this.timer = timer; } |