diff options
author | kpdecker <kpdecker@gmail.com> | 2015-08-22 10:56:40 -0700 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2015-08-22 10:59:08 -0700 |
commit | 1c274088c1ea9969f7a676fd5bebd11698f73116 (patch) | |
tree | 0979b5f54c7e98b317545a573d43ec6e8566d576 | |
parent | 0b5e82e1c34b5f765b16490ac1de59a0d1b651c3 (diff) | |
download | handlebars.js-1c274088c1ea9969f7a676fd5bebd11698f73116.zip handlebars.js-1c274088c1ea9969f7a676fd5bebd11698f73116.tar.gz handlebars.js-1c274088c1ea9969f7a676fd5bebd11698f73116.tar.bz2 |
Update AST doc for partial block
-rw-r--r-- | docs/compiler-api.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/compiler-api.md b/docs/compiler-api.md index abf8373..81438d2 100644 --- a/docs/compiler-api.md +++ b/docs/compiler-api.md @@ -97,7 +97,8 @@ interface PartialBlockStatement <: Statement { program: Program | null; indent: string; - strip: StripFlags | null; + openStrip: StripFlags | null; + closeStrip: StripFlags | null; } ``` |