aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
authorGravatar Gaute Hope <eg@gaute.vetsj.com>2014-02-09 11:50:48 +0100
committerGravatar David Bremner <david@tethera.net>2014-02-13 08:43:34 -0400
commit91aede05a3964cc3748bf9940661c20bfd82771a (patch)
tree0ce81ac8e5a5dc9e549079cfad1dc7f2d91ae9bf /lib
parent9b98c5f8e933e531777abe87210db2f946801261 (diff)
doc: notmuch_result_move_to_next -> notmuch_tags_move_to_next
Fix typo in docs.
Diffstat (limited to 'lib')
-rw-r--r--lib/notmuch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/notmuch.h b/lib/notmuch.h
index 3df1ade7..350bed8b 100644
--- a/lib/notmuch.h
+++ b/lib/notmuch.h
@@ -1000,7 +1000,7 @@ notmuch_thread_get_newest_date (notmuch_thread_t *thread);
*
* for (tags = notmuch_thread_get_tags (thread);
* notmuch_tags_valid (tags);
- * notmuch_result_move_to_next (tags))
+ * notmuch_tags_move_to_next (tags))
* {
* tag = notmuch_tags_get (tags);
* ....
@@ -1242,7 +1242,7 @@ notmuch_message_get_header (notmuch_message_t *message, const char *header);
*
* for (tags = notmuch_message_get_tags (message);
* notmuch_tags_valid (tags);
- * notmuch_result_move_to_next (tags))
+ * notmuch_tags_move_to_next (tags))
* {
* tag = notmuch_tags_get (tags);
* ....