Update README.md

Should be input.invokeBody()
This commit is contained in:
Phillip Gates-Idem 2014-04-15 09:50:42 -04:00
parent 423161ecf7
commit 08e196150a

View File

@ -982,7 +982,7 @@ If, and only if, a tag has nested content, then a special `invokeBody` method wi
module.exports = function(input, context) {
context.write('BEFORE BODY');
if (input.invokeBody) {
invoke.invokeBody();
input.invokeBody();
}
context.write('AFTER BODY');
}