diff options
| author | Caleb Spare <cespare@gmail.com> | 2014-08-25 16:42:15 -0700 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2014-08-25 16:42:15 -0700 |
| commit | 56916feea3ddbc3c2dedbe3b6a57b6c4a31c567b (patch) | |
| tree | 71759474800254591d320200128453780e10cf65 /src/pkg | |
| parent | 4516a60062f54e2b76d9dd53590120d5c368f24c (diff) | |
| download | go-56916feea3ddbc3c2dedbe3b6a57b6c4a31c567b.tar.xz | |
regexp: fix imports in the middle of the license header
LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/129620043
Diffstat (limited to 'src/pkg')
| -rw-r--r-- | src/pkg/regexp/onepass.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/pkg/regexp/onepass.go b/src/pkg/regexp/onepass.go index 7666a80ee5..e6f4285638 100644 --- a/src/pkg/regexp/onepass.go +++ b/src/pkg/regexp/onepass.go @@ -1,4 +1,6 @@ // Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. package regexp @@ -9,9 +11,6 @@ import ( "unicode" ) -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - // "One-pass" regexp execution. // Some regexps can be analyzed to determine that they never need // backtracking: they are guaranteed to run in one pass over the string |
