From: Caleb Spare Date: Mon, 25 Aug 2014 23:42:15 +0000 (-0700) Subject: regexp: fix imports in the middle of the license header X-Git-Tag: go1.4beta1~696 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=56916feea3ddbc3c2dedbe3b6a57b6c4a31c567b;p=gostls13.git regexp: fix imports in the middle of the license header LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/129620043 --- 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