fixed typos and style

This commit is contained in:
Günter Obiltschnig
2017-09-01 20:54:11 +02:00
parent cc2401a0c8
commit 968dfe77dc
8 changed files with 13 additions and 13 deletions

View File

@@ -83,7 +83,7 @@ bool strToInt(const char* pStr, I& result, short base, char thSep = ',')
/// Converts zero-terminated character array to integer number;
/// Thousand separators are recognized for base10 and current locale;
/// it is silently skipped but not verified for correct positioning.
/// Function returns true if succesful. If parsing was unsuccesful,
/// Function returns true if successful. If parsing was unsuccessful,
/// the return value is false with the result value undetermined.
{
if (!pStr) return false;
@@ -540,7 +540,7 @@ Foundation_API bool strToFloat(const std::string&, float& result, char decSep =
/// If decimal separator and/or thousand separator are different from defaults, they should be
/// supplied to ensure proper conversion.
///
/// Returns true if succesful, false otherwise.
/// Returns true if successful, false otherwise.
Foundation_API double strToDouble(const char* str);
@@ -553,7 +553,7 @@ Foundation_API bool strToDouble(const std::string& str, double& result, char dec
/// If decimal separator and/or thousand separator are different from defaults, they should be
/// supplied to ensure proper conversion.
///
/// Returns true if succesful, false otherwise.
/// Returns true if successful, false otherwise.
} // namespace Poco