Skip to content

Commit

Permalink
sha3: add a space before +build in build tag comments
Browse files Browse the repository at this point in the history
Add a space before build tag comments so it corresponds to the format
documented at https://golang.org/pkg/go/build/.

Change-Id: Ic29df4660a0968f58f721ec61943c0b277d4aaad
Reviewed-on: https://go-review.googlesource.com/c/crypto/+/193777
Run-TryBot: Tobias Klauser <[email protected]>
TryBot-Result: Gobot Gobot <[email protected]>
Reviewed-by: Brad Fitzpatrick <[email protected]>
  • Loading branch information
tklauser committed Sep 7, 2019
1 parent 9756ffd commit 71b5226
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sha3/hashes_generic.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//+build gccgo appengine !s390x
// +build gccgo appengine !s390x

package sha3

Expand Down
2 changes: 1 addition & 1 deletion sha3/sha3_s390x.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//+build !gccgo,!appengine
// +build !gccgo,!appengine

package sha3

Expand Down
2 changes: 1 addition & 1 deletion sha3/sha3_s390x.s
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//+build !gccgo,!appengine
// +build !gccgo,!appengine

#include "textflag.h"

Expand Down
2 changes: 1 addition & 1 deletion sha3/shake_generic.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//+build gccgo appengine !s390x
// +build gccgo appengine !s390x

package sha3

Expand Down

0 comments on commit 71b5226

Please sign in to comment.