commit | 5d997795f7bb1d2de5edc1f5d64af2562401c82d | [log] [tgz] |
---|---|---|
author | Dmitri Shuralyov <shurcooL@gmail.com> | Mon Nov 07 15:05:57 2016 -0800 |
committer | Brad Fitzpatrick <bradfitz@golang.org> | Mon Nov 07 23:52:11 2016 +0000 |
tree | 0c46e89f8a6a44a30df8755c92a7af11a1d84845 | |
parent | 55a3084c9119aeb9ba2437d595b0a7e9cb635da9 [diff] |
all: make copyright headers consistent with one space after period Go policy has been single space after periods in comments for some time. The copyright header template at: https://golang.org/doc/contribute.html#copyright also uses a single space. Make them all consistent. This CL was generated with: perl -i -npe 's,^(// Copyright [0-9]+ The Go Authors\.) (All rights reserved\.)$,$1 $2,' $(git grep -l -E '^// Copyright [0-9]+ The Go Authors\. All rights reserved\.$') Follows https://golang.org/cl/20111. Change-Id: I66671dddf821f5dc027bc254e0196b3e3a2bdf3b Reviewed-on: https://go-review.googlesource.com/32878 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>