aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2020-08-21 10:57:48 +0200
committerMarc André Tanner <mat@brain-dump.org>2020-08-29 13:34:41 +0200
commit6aaab772e878eb7605f2fa5d1b07b1ada1af1f30 (patch)
tree088b44c18242450c3585c2e708c6768aa718cc57
parent6a569c8d708fcfe0ad3d68730a704f1fba07e144 (diff)
downloadvis-6aaab772e878eb7605f2fa5d1b07b1ada1af1f30.tar.gz
vis-6aaab772e878eb7605f2fa5d1b07b1ada1af1f30.tar.xz
text: move misplaced text_save documentation snippet
-rw-r--r--text.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/text.h b/text.h
index 64795ee..a5816eb 100644
--- a/text.h
+++ b/text.h
@@ -339,15 +339,15 @@ enum TextSaveMethod {
/**
* Save the whole text to the given file name.
- */
-bool text_save(Text*, const char *filename);
-/**
- * Save the whole text to the given file name, using the specified method.
*
* @rst
* .. note:: Equivalent to ``text_save_method(filename, TEXT_SAVE_AUTO)``.
* @endrst
*/
+bool text_save(Text*, const char *filename);
+/**
+ * Save the whole text to the given file name, using the specified method.
+ */
bool text_save_method(Text*, const char *filename, enum TextSaveMethod);
/**