diff options
author | David Symonds <dsymonds@golang.org> | 2013-02-13 16:43:55 +1100 |
---|---|---|
committer | David Symonds <dsymonds@golang.org> | 2013-02-13 16:43:55 +1100 |
commit | 057a6635f3e94cfdc75fab78a9bd4821e0fd1ea0 (patch) | |
tree | d507158b5b7e69b24201c4697aaa6715301160b8 /doc/effective_go.html | |
parent | 048a6309760d2692ca3035d297ac8b1652984371 (diff) | |
download | go-057a6635f3e94cfdc75fab78a9bd4821e0fd1ea0.tar.gz |
doc: adjust indentation in Effective Go commentary example.
R=golang-dev, adg
CC=golang-dev
https://codereview.appspot.com/7225080
Diffstat (limited to 'doc/effective_go.html')
-rw-r--r-- | doc/effective_go.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/effective_go.html b/doc/effective_go.html index 1363f092f..a37377689 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -167,10 +167,9 @@ should set up the detailed documentation that follows. <pre> /* - Package regexp implements a simple library for - regular expressions. +Package regexp implements a simple library for regular expressions. - The syntax of the regular expressions accepted is: +The syntax of the regular expressions accepted is: regexp: concatenation { '|' concatenation } |