From b6f841733bd00267074d5cc0e2043a382e920eef Mon Sep 17 00:00:00 2001 From: Daniel Morsing Date: Thu, 18 Jul 2013 21:28:00 +0200 Subject: [PATCH] regexp/syntax: update documentation for Parse. Syntax description was moved to the top level comment of this package. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/11536043 --- src/pkg/regexp/syntax/parse.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/regexp/syntax/parse.go b/src/pkg/regexp/syntax/parse.go index 30e0e8b7fe4..42d0bf4a16f 100644 --- a/src/pkg/regexp/syntax/parse.go +++ b/src/pkg/regexp/syntax/parse.go @@ -651,7 +651,7 @@ func literalRegexp(s string, flags Flags) *Regexp { // Parse parses a regular expression string s, controlled by the specified // Flags, and returns a regular expression parse tree. The syntax is -// described in the top-level comment for package regexp. +// described in the top-level comment. func Parse(s string, flags Flags) (*Regexp, error) { if flags&Literal != 0 { // Trivial parser for literal string.