aboutsummaryrefslogtreecommitdiff
path: root/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'text.h')
-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);
/**