]> Cypherpunks repositories - gostls13.git/commitdiff
text/template: fixed typo in a nested template definition
authorkurochan <kuro@kurochan.org>
Thu, 15 Sep 2022 00:02:32 +0000 (00:02 +0000)
committerGopher Robot <gobot@golang.org>
Thu, 15 Sep 2022 21:05:40 +0000 (21:05 +0000)
The text was mistakenly quoted with backquotes.

Change-Id: I77ed4adac8c78b719bea61c08f1c377ed4ac4c9d
GitHub-Last-Rev: 6f1430fe167ad34effd75e8f2ac441436a81a878
GitHub-Pull-Request: golang/go#55059
Reviewed-on: https://go-review.googlesource.com/c/go/+/430775
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Rob Pike <r@golang.org>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Run-TryBot: Jenny Rakoczy <jenny@golang.org>
Run-TryBot: Ian Lance Taylor <iant@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Jenny Rakoczy <jenny@golang.org>
Auto-Submit: Jenny Rakoczy <jenny@golang.org>

src/text/template/doc.go

index 58cc97371b00276356af874a67904252e325735c..7817a17b96eea463a39ac8ac90ae62f9a8647b80 100644 (file)
@@ -424,10 +424,10 @@ The syntax of such definitions is to surround each template declaration with a
 The define action names the template being created by providing a string
 constant. Here is a simple example:
 
-       `{{define "T1"}}ONE{{end}}
+       {{define "T1"}}ONE{{end}}
        {{define "T2"}}TWO{{end}}
        {{define "T3"}}{{template "T1"}} {{template "T2"}}{{end}}
-       {{template "T3"}}`
+       {{template "T3"}}
 
 This defines two templates, T1 and T2, and a third T3 that invokes the other two
 when it is executed. Finally it invokes T3. If executed this template will