summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorTyler Cipriani <tcipriani@wikimedia.org>2017-06-29 14:42:32 -0600
committerTyler Cipriani <tcipriani@wikimedia.org>2017-06-29 14:45:04 -0600
commit56e09bc388d5ae1791045aabdb3a0eabd497d169 (patch)
tree858f056867bfcbf7a1e85d5d5c5a1f5b06d98f24 /build
parent9f2ef14ba62f26ded606260891a648c294b50d4b (diff)
downloadblubber-56e09bc388d5ae1791045aabdb3a0eabd497d169.tar.gz
Run go fmt
Summary: One of Golang's "advantages" is not quibbling over style. To this end the `go fmt` command exists. This is the result of me running: find . -name '*.go' -exec go fmt {} \; Test Plan: built package, ran tests Reviewers: dduvall, mmodell, #release-engineering-team Reviewed By: dduvall, mmodell, #release-engineering-team Subscribers: hashar Tags: #release-engineering-team Differential Revision: https://phabricator.wikimedia.org/D694
Diffstat (limited to 'build')
-rw-r--r--build/instructions.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/instructions.go b/build/instructions.go
index eda651c..e807b5b 100644
--- a/build/instructions.go
+++ b/build/instructions.go
@@ -9,6 +9,6 @@ const (
)
type Instruction struct {
- Type InstructionType
+ Type InstructionType
Arguments []string
}