diff options
author | kpdecker <kpdecker@gmail.com> | 2015-02-09 23:55:01 -0600 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2015-02-09 23:55:01 -0600 |
commit | 55dc82d938c0f30a14acf5f015bf1b779f2de791 (patch) | |
tree | 9c27a800469521ad39b2a71a457c2f6124a3d084 | |
parent | 39121cf8f50ec02b5a979f4911caefef8030161a (diff) | |
download | handlebars.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.md | 2 |
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; |