diff -r d891503c8aa6 -r d9bcdc9a91e6 libpurple/nat-pmp.h --- a/libpurple/nat-pmp.h Wed Jan 29 10:10:12 2014 +0530 +++ b/libpurple/nat-pmp.h Wed Jan 29 10:49:02 2014 +0530 @@ -56,13 +56,13 @@ /** * Remove the NAT-PMP mapping for a specified type on a specified port * - * @type: The PurplePmpType - * @privateport: The private port on which we are listening locally - * @publicport: The public port on which we are expecting a response - * @lifetime: The lifetime of the mapping. It is recommended that this + * @param type The PurplePmpType + * @param privateport The private port on which we are listening locally + * @param publicport The public port on which we are expecting a response + * @param lifetime The lifetime of the mapping. It is recommended that this * be PURPLE_PMP_LIFETIME. * - * Returns:s TRUE if successful; FALSE if unsuccessful + * @returns TRUE if successful; FALSE if unsuccessful */ gboolean purple_pmp_create_map(PurplePmpType type, unsigned short privateport, unsigned short publicport, int lifetime); @@ -70,10 +70,10 @@ /** * Remove the NAT-PMP mapping for a specified type on a specified port * - * @type: The PurplePmpType - * @privateport: The private port on which the mapping was previously made + * @param type The PurplePmpType + * @param privateport The private port on which the mapping was previously made * - * Returns:s TRUE if successful; FALSE if unsuccessful + * @returns TRUE if successful; FALSE if unsuccessful */ gboolean purple_pmp_destroy_map(PurplePmpType type, unsigned short privateport);