summaryrefslogtreecommitdiff
path: root/src/mustach/mustach.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mustach/mustach.h')
-rw-r--r--src/mustach/mustach.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mustach/mustach.h b/src/mustach/mustach.h
index 1fddb92e..ad952275 100644
--- a/src/mustach/mustach.h
+++ b/src/mustach/mustach.h
@@ -200,7 +200,7 @@ struct mustach_sbuf {
/**
* fmustach - Renders the mustache 'template' in 'file' for 'itf' and 'closure'.
*
- * @template: the template string to instanciate
+ * @template: the template string to instantiate
* @itf: the interface to the functions that mustach calls
* @closure: the closure to pass to functions called
* \@file: the file where to write the result
@@ -213,7 +213,7 @@ extern int fmustach(const char *template, struct mustach_itf *itf, void *closure
/**
* fmustach - Renders the mustache 'template' in 'fd' for 'itf' and 'closure'.
*
- * @template: the template string to instanciate
+ * @template: the template string to instantiate
* @itf: the interface to the functions that mustach calls
* @closure: the closure to pass to functions called
* @fd: the file descriptor number where to write the result
@@ -226,7 +226,7 @@ extern int fdmustach(const char *template, struct mustach_itf *itf, void *closur
/**
* fmustach - Renders the mustache 'template' in 'result' for 'itf' and 'closure'.
*
- * @template: the template string to instanciate
+ * @template: the template string to instantiate
* @itf: the interface to the functions that mustach calls
* @closure: the closure to pass to functions called
* @result: the pointer receiving the result when 0 is returned