From 825f19bb5558c98346460f032cba0debc78dc688 Mon Sep 17 00:00:00 2001 From: Andy Grunwald Date: Sat, 20 Jan 2018 18:30:33 +0100 Subject: [PATCH] fix: Typo in buildtarget The buildtarget contained a typo. This fixes it. --- internal/buildtarget/buildtarget.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/buildtarget/buildtarget.go b/internal/buildtarget/buildtarget.go index ad8fc2e75..a2e4f6915 100644 --- a/internal/buildtarget/buildtarget.go +++ b/internal/buildtarget/buildtarget.go @@ -5,10 +5,10 @@ import ( "runtime" ) -// Runtime is the current runtime buildTarget +// Runtime is the current runtime build target var Runtime = Target{runtime.GOOS, runtime.GOARCH, ""} -// New builtarget +// New build Target func New(goos, goarch, goarm string) Target { return Target{goos, goarch, goarm} }