summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkpdecker <kpdecker@gmail.com>2015-02-09 23:55:01 -0600
committerkpdecker <kpdecker@gmail.com>2015-02-09 23:55:01 -0600
commit55dc82d938c0f30a14acf5f015bf1b779f2de791 (patch)
tree9c27a800469521ad39b2a71a457c2f6124a3d084
parent39121cf8f50ec02b5a979f4911caefef8030161a (diff)
downloadhandlebars.js-55dc82d938c0f30a14acf5f015bf1b779f2de791.zip
handlebars.js-55dc82d938c0f30a14acf5f015bf1b779f2de791.tar.gz
handlebars.js-55dc82d938c0f30a14acf5f015bf1b779f2de791.tar.bz2
Update AST docs for literal helper names
-rw-r--r--docs/compiler-api.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/compiler-api.md b/docs/compiler-api.md
index 3593228..40ded8f 100644
--- a/docs/compiler-api.md
+++ b/docs/compiler-api.md
@@ -56,7 +56,7 @@ interface Statement <: Node { }
interface MustacheStatement <: Statement {
type: "MustacheStatement";
- path: PathExpression;
+ path: PathExpression | Literal;
params: [ Expression ];
hash: Hash;