diff --git a/content/docs/overview.md b/content/docs/overview.md index 6653798e..ad6635ff 100644 --- a/content/docs/overview.md +++ b/content/docs/overview.md @@ -4459,7 +4459,7 @@ defer if cond { } defer { // This is first evaluated, allowing the prior `defer`s to act, as evaluation - happens in reverse declaration order. + // happens in reverse declaration order. cond = true fmt.println("a") // This will print first. }