summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKirill Simonov <xi@resolvent.net>2006-07-25 20:54:28 +0000
committerKirill Simonov <xi@resolvent.net>2006-07-25 20:54:28 +0000
commitcf6161665735051e6ebce2c5a105e2191e6d33fc (patch)
treeb7e66246c8189366cb689e54b23c79b79ead0f2e /include
parentb1a54000b5f6bfc58221bbf6f9aa384c821264a3 (diff)
downloadlibyaml-git-cf6161665735051e6ebce2c5a105e2191e6d33fc.tar.gz
Add yaml_emitter_emit_* set of functions.
Diffstat (limited to 'include')
-rw-r--r--include/yaml.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/yaml.h b/include/yaml.h
index 204872a..a4fc4e8 100644
--- a/include/yaml.h
+++ b/include/yaml.h
@@ -1139,14 +1139,14 @@ yaml_emitter_set_canonical(yaml_emitter_t *emitter, int canonical);
* Set the intendation increment.
*
* @param[in] emitter An emitter object.
- * @param[in] indent The indentation increment (> 1).
+ * @param[in] indent The indentation increment (1 < . < 10).
*/
YAML_DECLARE(void)
yaml_emitter_set_indent(yaml_emitter_t *emitter, int indent);
/**
- * Set the preferred line width. @c 0 means unlimited.
+ * Set the preferred line width. @c -1 means unlimited.
*
* @param[in] emitter An emitter object.
* @param[in] width The preferred line width.