diff options
author | Max Schumacher <maximilianbschumacher@gmail.com> | 2020-12-11 22:14:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-11 22:14:50 +0100 |
commit | b80a2b08e9fe5873853ad550f93f5150317ef671 (patch) | |
tree | cc91ecc9113185b14e7b93367667b24eca8245b6 | |
parent | 26093e1d9e3cd05f5281f29c918b1778cb079cf7 (diff) | |
parent | 09f41ab74c901875c19d95e938f9aa3120200b4a (diff) |
Merge pull request #4066 from bdavs3/patch-1
go/en - Fix typo in build tag description
-rw-r--r-- | go.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/go.html.markdown b/go.html.markdown index b727e59d..5a9214b0 100644 --- a/go.html.markdown +++ b/go.html.markdown @@ -33,7 +33,7 @@ Go comes with a good standard library and a sizeable community. line comment */ /* A build tag is a line comment starting with // +build - and can be execute by go build -tags="foo bar" command. + and can be executed by go build -tags="foo bar" command. Build tags are placed before the package clause near or at the top of the file followed by a blank line or other line comments. */ // +build prod, dev, test |