mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-15 07:14:46 +02:00
fixed typos and style
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user