summaryrefslogtreecommitdiff
path: root/backend/recipe.go
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-12-10 14:50:28 -0500
committerTucker Evans <tuckerevans24@gmail.com>2019-12-10 14:50:28 -0500
commitc85f7519729d5ad4120f60d742e5f5e6f62d136e (patch)
tree3a44f99bc698ff855b52139655acbc7226a31e01 /backend/recipe.go
parent59e6f7ebe87c516752275d11673557cc58ed9d09 (diff)
Fix intructions -> intruction for backend json
Now the same as frontend data models.
Diffstat (limited to 'backend/recipe.go')
-rw-r--r--backend/recipe.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/recipe.go b/backend/recipe.go
index 3511fd6..59b7366 100644
--- a/backend/recipe.go
+++ b/backend/recipe.go
@@ -10,7 +10,7 @@ type Ingredient struct {
}
type Step struct {
- Desc string `json:"instructions"`
+ Desc string `json:"instruction"`
Time int `json:"timer"`
}