docs: Fix findRE typo
authorCameron Moore <moorereason@gmail.com>
Thu, 21 Apr 2016 17:38:40 +0000 (12:38 -0500)
committerCameron Moore <moorereason@gmail.com>
Thu, 21 Apr 2016 17:38:40 +0000 (12:38 -0500)
docs/content/templates/functions.md

index 7cb749d058b45be7215eebd98f5a4a2d259dc1b6..9d1981e80f4a9b14612c94d860234253379dca58 100644 (file)
@@ -486,7 +486,7 @@ We can limit the number of matches in that list with a third parameter. Let's sa
     {{ findRE "<h2.*?>(.|\n)*?</h2>" .Content 1 }}
     <!-- returns ["<h2 id="#foo">Foo</h2>"] -->
 
-`findRe` allows us to build an automatically generated table of contents that could be used for a simple scrollspy:
+`findRE` allows us to build an automatically generated table of contents that could be used for a simple scrollspy:
 
     {{ $headers := findRE "<h2.*?>(.|\n)*?</h2>" .Content }}