summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/DataModels/step.ts
diff options
context:
space:
mode:
Diffstat (limited to 'recipeBuddy/src/app/DataModels/step.ts')
-rw-r--r--recipeBuddy/src/app/DataModels/step.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipeBuddy/src/app/DataModels/step.ts b/recipeBuddy/src/app/DataModels/step.ts
index ef07596..ec33e15 100644
--- a/recipeBuddy/src/app/DataModels/step.ts
+++ b/recipeBuddy/src/app/DataModels/step.ts
@@ -1,14 +1,14 @@
export class Step {
- public instructions: string;
+ public instruction: string;
public timer: number;
- public constructor(instructions: string, timer: number) {
- this.instructions = instructions;
+ public constructor(instruction: string, timer: number) {
+ this.instruction = instruction;
this.timer = timer;
}
public getInstructions(): string {
- return this.instructions;
+ return this.instruction;
}
public getTimer(): number {