]> Cypherpunks repositories - gostls13.git/commitdiff
doc: fix wiki codelab description of template parsing
authorAndrew Gerrand <adg@golang.org>
Mon, 25 Feb 2013 21:31:47 +0000 (08:31 +1100)
committerAndrew Gerrand <adg@golang.org>
Mon, 25 Feb 2013 21:31:47 +0000 (08:31 +1100)
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/7372048

doc/articles/wiki/index.html

index b7706777d3535a6c819d405a10a2742367808a44..ea3507f4df362e485412645f77ba00726841fb54 100644 (file)
@@ -544,10 +544,11 @@ can't be loaded the only sensible thing to do is exit the program.
 </p>
 
 <p>
-A <code>for</code> loop is used with a <code>range</code> statement
-to iterate over an array constant containing the names of the templates we want
-parsed. If we were to add more templates to our program, we would add their
-names to that array.
+The <code>ParseFiles</code> function takes any number of string arguments that
+identify our template files, and parses those files into templates that are
+named after the base file name. If we were to add more templates to our
+program, we would add their names to the <code>ParseFiles</code> call's
+arguments.
 </p>
 
 <p>