From 56916feea3ddbc3c2dedbe3b6a57b6c4a31c567b Mon Sep 17 00:00:00 2001 From: Caleb Spare Date: Mon, 25 Aug 2014 16:42:15 -0700 Subject: [PATCH] regexp: fix imports in the middle of the license header LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/129620043 --- src/pkg/regexp/onepass.go | 5 ++--- 1 file 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 -- 2.48.1