aboutsummaryrefslogtreecommitdiffhomepage
path: root/builder/ar.go
diff options
context:
space:
mode:
Diffstat (limited to 'builder/ar.go')
-rw-r--r--builder/ar.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/builder/ar.go b/builder/ar.go
index 7e33e731b..c3aad171e 100644
--- a/builder/ar.go
+++ b/builder/ar.go
@@ -18,7 +18,7 @@ import (
// makeArchive creates an arcive for static linking from a list of object files
// given as a parameter. It is equivalent to the following command:
//
-// ar -rcs <archivePath> <objs...>
+// ar -rcs <archivePath> <objs...>
func makeArchive(arfile *os.File, objs []string) error {
// Open the archive file.
arwriter := ar.NewWriter(arfile)