From 6da0fcb7bea5d333f2d455d553d3acdf9cd33bf5 Mon Sep 17 00:00:00 2001 From: mikestefanello Date: Sat, 22 Jun 2024 10:38:57 -0400 Subject: [PATCH] Fixed doc code formatting. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" } ```