diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2020-08-21 10:57:48 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2020-08-29 13:34:41 +0200 |
| commit | 6aaab772e878eb7605f2fa5d1b07b1ada1af1f30 (patch) | |
| tree | 088b44c18242450c3585c2e708c6768aa718cc57 | |
| parent | 6a569c8d708fcfe0ad3d68730a704f1fba07e144 (diff) | |
| download | vis-6aaab772e878eb7605f2fa5d1b07b1ada1af1f30.tar.gz vis-6aaab772e878eb7605f2fa5d1b07b1ada1af1f30.tar.xz | |
text: move misplaced text_save documentation snippet
| -rw-r--r-- | text.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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); /** |
