Fixed a few typos.

This commit is contained in:
Jman012 2013-11-18 20:10:07 -08:00
parent 37d9728830
commit 21e514572c
4 changed files with 5 additions and 5 deletions

View File

@ -2175,9 +2175,9 @@ int get_friendlist(Messenger *m, int **out_list, uint32_t *out_list_length)
return 0;
}
/* Return the number of chat in the instance m.
/* Return the number of chats in the instance m.
* You should use this to determine how much memory to allocate
* for copy_grouplist. */
* for copy_chatlist. */
uint32_t count_chatlist(Messenger *m)
{
uint32_t ret = 0;

View File

@ -635,7 +635,7 @@ int get_friendlist(Messenger *m, int **out_list, uint32_t *out_list_length);
/* Return the number of chats in the instance m.
* You should use this to determine how much memory to allocate
* for copy_grouplist. */
* for copy_chatlist. */
uint32_t count_chatlist(Messenger *m);
/* Copy a list of valid chat IDs into the array out_list.

View File

@ -479,7 +479,7 @@ int tox_group_message_send(Tox *tox, int groupnumber, uint8_t *message, uint32_t
/* Return the number of chats in the instance m.
* You should use this to determine how much memory to allocate
* for copy_friendlist. */
* for copy_chatlist. */
uint32_t tox_count_chatlist(Tox *tox)
{
Messenger *m = tox;

View File

@ -407,7 +407,7 @@ int tox_group_message_send(Tox *tox, int groupnumber, uint8_t *message, uint32_t
/* Return the number of chats in the instance m.
* You should use this to determine how much memory to allocate
* for copy_friendlist. */
* for copy_chatlist. */
uint32_t tox_count_chatlist(Tox *tox);
/* Copy a list of valid chat IDs into the array out_list.