Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Scarr committed Aug 1, 2018
2 parents 17bfa2c + 7226e57 commit 19b5817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ func (a *mutationResolver) CreateTodo(ctx context.Context, input model.NewTodo)
todo := model.Todo{
Text: input.Text,
ID: fmt.Sprintf("T%d", rand.Int()),
UserID: input.User,
UserID: input.UserId,
}
a.todos = append(a.todos, todo)
return todo, nil
Expand Down

0 comments on commit 19b5817

Please sign in to comment.