projects
/
notmuch.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9b98c5f
)
doc: notmuch_result_move_to_next -> notmuch_tags_move_to_next
author
Gaute Hope
<eg@gaute.vetsj.com>
Sun, 9 Feb 2014 10:50:48 +0000
(11:50 +0100)
committer
David Bremner
<david@tethera.net>
Thu, 13 Feb 2014 12:43:34 +0000
(08:43 -0400)
Fix typo in docs.
lib/notmuch.h
patch
|
blob
|
history
diff --git
a/lib/notmuch.h
b/lib/notmuch.h
index 3df1ade788c6063ef3aaa0bb7f199b5c067978cc..350bed8bdbba956da7114bf969dfdcde513b5b8e 100644
(file)
--- 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);
* ....