From: Russ Cox Date: Wed, 9 Nov 2011 18:46:54 +0000 (-0500) Subject: regexp: fix doc comment X-Git-Tag: weekly.2011-11-18~140 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7a6a9755a94c449b52ce4ff3961f5c59037ae2da;p=gostls13.git regexp: fix doc comment Fixes #2432. R=r, r CC=golang-dev https://golang.org/cl/5376041 --- diff --git a/src/pkg/regexp/regexp.go b/src/pkg/regexp/regexp.go index b906076f9e..59f3be39d2 100644 --- a/src/pkg/regexp/regexp.go +++ b/src/pkg/regexp/regexp.go @@ -1,7 +1,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package regexp implements a simple regular expression library. +// Package regexp implements regular expression search. // // The syntax of the regular expressions accepted is the same // general syntax used by Perl, Python, and other languages.