Rename ReadDir to readDir
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 7 Aug 2015 12:33:48 +0000 (14:33 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 7 Aug 2015 12:33:48 +0000 (14:33 +0200)
To make it consistent with the other template funcs.

docs/content/extras/localfiles.md
tpl/template_funcs.go

index 2cfcda49e1b7e4a38963f3237e07184c5304618e..14d42507991705bb00f4df1354e891d04af69c90 100644 (file)
@@ -15,13 +15,13 @@ weight: 110
 ## Traversing Local Files
 
 Hugo includes a way to traverse local files.
-This is done using the 'ReadDir' function.
+This is done using the 'readDir' function.
 
-## Using ReadDir
+## Using readDir
 
-ReadDir takes a single string input that is relative to the root directory of the site. It returns an array of [os.FileInfo](https://golang.org/pkg/os/#FileInfo)
+readDir takes a single string input that is relative to the root directory of the site. It returns an array of [os.FileInfo](https://golang.org/pkg/os/#FileInfo)
 
-Let's create a shortcode to build a file index with links using ReadDir.
+Let's create a shortcode to build a file index with links using readDir.
 
 'fileindex.html'
 
@@ -31,7 +31,7 @@ Let's create a shortcode to build a file index with links using ReadDir.
     {{$dir := .Get "dir"}}
     {{ $url := .Get "baseurl" }}
     
-    {{ $files := ReadDir $dir }}
+    {{ $files := readDir $dir }}
         {{ range $files }}
                        <tr>
                     <td>{{.Size}}</td>
index 3ebe23ae7d340e050176c5495012ea06b3b21e76..d26dc6494707ed0a5f1566d6393e98936ed95c01 100644 (file)
@@ -1369,7 +1369,7 @@ func init() {
                "dateFormat":  DateFormat,
                "getJSON":     GetJSON,
                "getCSV":      GetCSV,
-               "ReadDir":     ReadDir,
+               "readDir":     ReadDir,
                "seq":         helpers.Seq,
                "getenv":      func(varName string) string { return os.Getenv(varName) },
        }