1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-16 11:45:04 +02:00

Merge pull request #4066 from bdavs3/patch-1

go/en - Fix typo in build tag description
This commit is contained in:
Max Schumacher
2020-12-11 22:14:50 +01:00
committed by GitHub

View File

@@ -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