]> Cypherpunks repositories - gostls13.git/commitdiff
regexp: fix imports in the middle of the license header
authorCaleb Spare <cespare@gmail.com>
Mon, 25 Aug 2014 23:42:15 +0000 (16:42 -0700)
committerBrad Fitzpatrick <bradfitz@golang.org>
Mon, 25 Aug 2014 23:42:15 +0000 (16:42 -0700)
LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/129620043

src/pkg/regexp/onepass.go

index 7666a80ee569ced15b9fdadc6e1265d10f066adc..e6f42856387bc1ffc8efe9bd6ea714bc45dfa127 100644 (file)
@@ -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