diff --git a/README.md b/README.md index 6395947..2f25d4f 100644 --- a/README.md +++ b/README.md @@ -1009,11 +1009,11 @@ A queue starts by declaring a `Task` _type_, which is the object that gets place ```go type MyTask struct { Text string - Num int + Num int } func (t MyTask) Name() string { - return "my_task" + return "my_task" } ```