diff options
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 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; |