summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJman012 <jman012guy@gmail.com>2014-02-16 16:50:57 -0800
committerJman012 <jman012guy@gmail.com>2014-02-16 16:50:57 -0800
commit00f38c8deb73d21f3a71866caf2b6c802d50e6d6 (patch)
treef639c385cf80f2d2966859218e4107bf8c1803e0
parent00d44597f0fe0dbbca93782c9ec90f9b08910989 (diff)
Typos.
-rw-r--r--toxcore/Messenger.h2
-rw-r--r--toxcore/tox.c2
-rw-r--r--toxcore/tox.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/toxcore/Messenger.h b/toxcore/Messenger.h
index 952aa436..42f0738c 100644
--- a/toxcore/Messenger.h
+++ b/toxcore/Messenger.h
@@ -415,7 +415,7 @@ int m_set_usertyping(Messenger *m, int friendnumber, uint8_t is_typing);
415/* Get the typing status of a friend. 415/* Get the typing status of a friend.
416 * 416 *
417 * returns 0 if friend is not typing. 417 * returns 0 if friend is not typing.
418 * returns -1 if friend is typing. 418 * returns 1 if friend is typing.
419 */ 419 */
420uint8_t m_get_istyping(Messenger *m, int friendnumber); 420uint8_t m_get_istyping(Messenger *m, int friendnumber);
421 421
diff --git a/toxcore/tox.c b/toxcore/tox.c
index 3f2c1e92..362724fc 100644
--- a/toxcore/tox.c
+++ b/toxcore/tox.c
@@ -285,7 +285,7 @@ int tox_set_user_is_typing(Tox *tox, int friendnumber, uint8_t is_typing)
285/* Get the typing status of a friend. 285/* Get the typing status of a friend.
286 * 286 *
287 * returns 0 if friend is not typing. 287 * returns 0 if friend is not typing.
288 * returns -1 if friend is typing. 288 * returns 1 if friend is typing.
289 */ 289 */
290int tox_get_is_typing(Tox *tox, int friendnumber) 290int tox_get_is_typing(Tox *tox, int friendnumber)
291{ 291{
diff --git a/toxcore/tox.h b/toxcore/tox.h
index 0a4e80f7..72589142 100644
--- a/toxcore/tox.h
+++ b/toxcore/tox.h
@@ -292,7 +292,7 @@ int tox_set_user_is_typing(Tox *tox, int friendnumber, uint8_t is_typing);
292/* Get the typing status of a friend. 292/* Get the typing status of a friend.
293 * 293 *
294 * returns 0 if friend is not typing. 294 * returns 0 if friend is not typing.
295 * returns -1 if friend is typing. 295 * returns 1 if friend is typing.
296 */ 296 */
297int tox_get_is_typing(Tox *tox, int friendnumber); 297int tox_get_is_typing(Tox *tox, int friendnumber);
298 298