From cfdfbf4c099a430f46c2740508f63ddceebd50dd Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Wed, 13 Oct 2010 12:02:03 +0200 Subject: [PATCH] Fix typo in error message --- src/logger.cpp | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/logger.cpp b/src/logger.cpp index 4df181e..58bdd1e 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -1294,7 +1294,7 @@ void Logger::print_httphelper_not_initialized() const /** - * An curl error occured. + * A curl error occured. * @param msg The error message * @param curl_err_code The resulting curl error code */ @@ -1318,7 +1318,7 @@ void Logger::print_curl_error_init(const std::string& err_msg, const CURLcode cu /** - * An curl error occured. + * A curl error occured. * @param url The url requested by the curl operation * @param curl_err_code The resulting curl error code */ @@ -1346,7 +1346,7 @@ void Logger::print_curl_error(const string& url, const CURLcode curl_err_code) c /** - * An curl error occured. + * A curl error occured. * @param url The url requested by the curl operation * @param curl_err_code The resulting curl error code * @param curl_err_buff The curl error buffer @@ -1584,7 +1584,7 @@ void Logger::print_exception_md5_sum(const string& what) const /** - * An network exception occured. + * A network exception occured. * @param what The exception occured. */ void Logger::print_network_error(const string& what) const @@ -1593,7 +1593,7 @@ void Logger::print_network_error(const string& what) const if ( level <= Loglevel ) { ostringstream msg; - msg << "An netowrk exception occured: " << what << endl; + msg << "A network exception occured: " << what << endl; log_error(msg.str()); } } -- 1.7.1