summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/DataModels/step.ts
diff options
context:
space:
mode:
authorchrisundercoffer <55003067+chrisundercoffer@users.noreply.github.com>2019-12-09 17:08:51 -0500
committerGitHub <noreply@github.com>2019-12-09 17:08:51 -0500
commit67b9f6678c6c588f231bce1f658adfe0e11321ab (patch)
treebc42a10b22ef6402bdbb41794eee584a56737920 /recipeBuddy/src/app/DataModels/step.ts
parent5cf3689290666f70cd631d7b3d40a2ed245a3fce (diff)
parent2a46419961ab4db50146434945a57859893f8d54 (diff)
Merge pull request #14 from tuckerevans/add_page
Add Recipe Page
Diffstat (limited to 'recipeBuddy/src/app/DataModels/step.ts')
-rw-r--r--recipeBuddy/src/app/DataModels/step.ts2
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;
}