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