From b72cc94e5d3a1e3179af18d57e9d74db7720992b Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Mon, 4 Jul 2022 10:18:36 -0700 Subject: [PATCH] Fix wording --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 52e1435..f9f0b6d 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,8 @@ anything from blogs to image galleries using the same tool. Goldsmith does not use any configuration files, and all behavior customization happens in code. Goldsmith uses the [builder pattern](https://en.wikipedia.org/wiki/Builder_pattern) to establish a chain, which modifies files as they pass -through it. Although the [Goldsmith](https://godoc.org/foosoft.net/projects/goldsmith) is short and (hopefully) easy to -understand, it is often best to learn by example: +through it. Although the [Goldsmith](https://godoc.org/foosoft.net/projects/goldsmith) API is short and (hopefully) easy +to understand, it is often best to learn by example: 1. Start by copying files from a source directory to a destination directory (the simplest possible use case): @@ -80,8 +80,8 @@ understand, it is often best to learn by example: ``` 6. Debugging problems in minified code can be tricky, so let's use the - [Condition](https://godoc.org/foosoft.net/projects/goldsmith-components/filters/condition) filter to make minification - occur only when we are ready for distribution. + [Condition](https://godoc.org/foosoft.net/projects/goldsmith-components/filters/condition) filter to make + minification occur only when we are ready for distribution. ```go goldsmith. @@ -96,8 +96,8 @@ understand, it is often best to learn by example: ``` 7. Now that we have all of our plugins chained up, let's look at a complete example which uses - [DevServer](https://godoc.org/foosoft.net/projects/goldsmith-components/devserver) to bootstrap a complete development - sever which automatically rebuilds the site whenever source files are updated. + [DevServer](https://godoc.org/foosoft.net/projects/goldsmith-components/devserver) to bootstrap a complete + development sever which automatically rebuilds the site whenever source files are updated. ```go package main