fix typos

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2019-01-14 22:59:13 +00:00
parent d29b498cae
commit 8731c6a11f
No known key found for this signature in database
GPG key ID: 0D46FEF7E61DBB46
4 changed files with 6 additions and 6 deletions

View file

@ -71,7 +71,7 @@ struct mustach_itf {
/**
* 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
@ -84,7 +84,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
@ -97,7 +97,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