diff libpurple/protocols/msn/command.h @ 30715:59cf1be8eaa7

Fix a few little things.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Sat, 13 Mar 2010 08:09:32 +0000
parents f6b2412e4351
children 61db10475bed
line wrap: on
line diff
--- a/libpurple/protocols/msn/command.h	Sat Mar 13 07:26:25 2010 +0000
+++ b/libpurple/protocols/msn/command.h	Sat Mar 13 08:09:32 2010 +0000
@@ -63,17 +63,16 @@
  */
 MsnCommand *msn_command_from_string(const char *string);
 
-
 /**
- * Destroy a MsnCommand object. If it's being used by someone else,
- * it just unref the object and return.
+ * Destroy a MsnCommand object if its ref count is zero, otherwise
+ * just unref it.
  *
  * @param cmd 	The MsnCommand to be destroyed.
  */
 void msn_command_destroy(MsnCommand *cmd);
 
 /**
- * Add 1 to the ref count.
+ * Increment the ref count.
  *
  * @param cmd 	The MsnCommand to be ref.
  *
@@ -82,7 +81,7 @@
 MsnCommand *msn_command_ref(MsnCommand *cmd);
 
 /**
- * Substrac 1 to the ref count. If the count goes to 0, destroy it.
+ * Decrement the ref count. If the count goes to 0, destroy it.
  *
  * @param cmd	The MsnCommand to be unref.
  *