Fix typo in comments

This commit is contained in:
Julien Ropé 2012-05-21 13:59:46 +02:00
parent d84fc3d952
commit faad307e51

View File

@ -25,7 +25,7 @@
/** /**
* Allocate memory. * Allocate memory.
* This function is used to secude a malloc call. * This function is used to secure a malloc call.
* It verifies its return value, and logs an error if the allocation failed. * It verifies its return value, and logs an error if the allocation failed.
* *
* @param size - number of bytes to allocate. If the size is < 1, it will default to 1. * @param size - number of bytes to allocate. If the size is < 1, it will default to 1.
@ -182,7 +182,7 @@ wchar_t* xwcsdup(const wchar_t* wstr)
} }
/** /**
* Create a uppercase version of the given string. * Create an uppercase version of the given string.
* This function will duplicate the string (using xstrdup()) and change its content to all uppercase. * This function will duplicate the string (using xstrdup()) and change its content to all uppercase.
* The original string is untouched. * The original string is untouched.
* *