From 8937c76e220412e976bfc0c7048db8b81f33e916 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 20 Jun 2013 11:40:50 -0400 Subject: [PATCH] Spelling: [libcdio] success --- src/libcdio/cdio/utf8.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libcdio/cdio/utf8.h b/src/libcdio/cdio/utf8.h index e29cc819..ef150622 100644 --- a/src/libcdio/cdio/utf8.h +++ b/src/libcdio/cdio/utf8.h @@ -50,7 +50,7 @@ void cdio_charset_converter_destroy(cdio_charset_coverter_t*cnv); * \param src_len Length of source string * \param dst Returns destination string * \param dst_len If non NULL, returns the length of the destination string - * \returns true if conversion was sucessful, false else. + * \returns true if conversion was successful, false else. * * The destination string must be freed by the caller with free(). * If you pass -1 for src_len, strlen() will be used. @@ -65,7 +65,7 @@ bool cdio_charset_convert(cdio_charset_coverter_t*cnv, * \param dst Returns destination string * \param dst_len If non NULL, returns the length of the destination string * \param dst_charset The characterset to convert to - * \returns true if conversion was sucessful, false else. + * \returns true if conversion was successful, false else. * * This is a convenience function, which creates a charset converter, * converts one string and destroys the charset converter. @@ -80,7 +80,7 @@ bool cdio_charset_from_utf8(cdio_utf8_t * src, char ** dst, * \param src_len Length of the source string * \param dst Returns destination string (0 terminated) * \param src_charset The characterset to convert from - * \returns true if conversion was sucessful, false else. + * \returns true if conversion was successful, false else. * * This is a convenience function, which creates a charset converter, * converts one string and destroys the charset converter. If you pass -1 @@ -94,7 +94,7 @@ bool cdio_charset_to_utf8(const char *src, size_t src_len, cdio_utf8_t **dst, #ifdef _WIN32 /** \brief Convert an UTF8 string to UTF-16 (allocate returned string) * \param str Source string - * \returns NULL if the conversion was unsuccesful. Caller must free the + * \returns NULL if the conversion was unsuccessful. Caller must free the * returned string. * This is a convenience function available on Windows platforms only. */