diff options
author | Kevin Decker <kpdecker@gmail.com> | 2016-08-21 14:12:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-21 14:12:35 -0500 |
commit | 9fb7baddcc82ed0eb98b023428ad626bf3c9fbba (patch) | |
tree | b9e11b8e18fc936cd8d7dc377ba6a5a9fa732b22 /docs/compiler-api.md | |
parent | a6a0e50551ff7a7f7349ea67d35dcda04ce26cfd (diff) | |
parent | f2211ddd650af2a28c782e736d8528f875c38dd4 (diff) | |
download | handlebars.js-9fb7baddcc82ed0eb98b023428ad626bf3c9fbba.zip handlebars.js-9fb7baddcc82ed0eb98b023428ad626bf3c9fbba.tar.gz handlebars.js-9fb7baddcc82ed0eb98b023428ad626bf3c9fbba.tar.bz2 |
Merge pull request #1239 from blikblum/patch-1
Update definition of BlockStatement.path
Diffstat (limited to 'docs/compiler-api.md')
-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 2938219..c9d2e93 100644 --- a/docs/compiler-api.md +++ b/docs/compiler-api.md @@ -66,7 +66,7 @@ interface MustacheStatement <: Statement { interface BlockStatement <: Statement { type: "BlockStatement"; - path: PathExpression; + path: PathExpression | Literal; params: [ Expression ]; hash: Hash; |