From d882f8d5837ca3b474e9b4e513e5184d341a3bec Mon Sep 17 00:00:00 2001 From: rednafi Date: Tue, 5 Sep 2023 20:51:11 -0400 Subject: [PATCH] Publish blog on configuring options in Go, closes #41 --- content/go/configure_options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/go/configure_options.md b/content/go/configure_options.md index c27996a..5461f57 100644 --- a/content/go/configure_options.md +++ b/content/go/configure_options.md @@ -37,7 +37,7 @@ Each comes with its own pros and cons. ## Expose the option struct In this case, you'd export the `Style` struct with all its fields and let the user configure -them directly. The previous snipped already made the struct and fields public. From another +them directly. The previous snippet already made the struct and fields public. From another package, you could import the `src` package and instantiate `Style` like this: ```go