From 3a1c1ee14205dc310b57d12d28c694efa739d9b4 Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Tue, 4 Sep 2012 17:13:42 -0700 Subject: [PATCH] docs --- Readme.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Readme.md b/Readme.md index 34d74cb..74985f9 100644 --- a/Readme.md +++ b/Readme.md @@ -43,13 +43,13 @@ module.exports = function(obj) { ## API -### minstache(str, [obj]) +### minstache(string, [obj]) - Compile and render the given mustache `str` with optional context `obj`. + Compile and render the given mustache `string` with optional context `obj`. -### minstache.compile(str) +### minstache.compile(string) - Compile the mustache `str` to a stand-alone `Function` accepting a context `obj`. + Compile the mustache `string` to a stand-alone `Function` accepting a context `obj`. ## Todo @@ -60,7 +60,7 @@ module.exports = function(obj) { - lambdas I couldn't care less about partials, and will not add them, this lib is meant to - be a small template engine solution for stand-alone [component](http://github.com/component) templates. If your template takes "partials", pass other rendered strings to it. + be a small template engine solution for stand-alone [component](http://github.com/component) templates. If your template takes "partials" then pass other rendered strings to it. ## License