aboutsummaryrefslogtreecommitdiff
path: root/include/timeutils.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/timeutils.h')
-rw-r--r--include/timeutils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/timeutils.h b/include/timeutils.h
index 521105743..5ac185e22 100644
--- a/include/timeutils.h
+++ b/include/timeutils.h
@@ -38,7 +38,7 @@ namespace Duration
*/
CoreExport bool IsValid(const std::string& str);
- /** Converts a number of seconds to a human-readable representation.
+ /** Converts a number of seconds to a human-readable duration string.
*
* e.g. 33,019,565 will result in 1 year, 2 weeks, 3 days, 4 hours, 6
* minutes, 5 seconds.
@@ -46,7 +46,7 @@ namespace Duration
* @param duration The number of seconds to convert.
* @param brief Whether to round to the nearest time period.
*/
- CoreExport std::string ToHuman(unsigned long duration, bool brief = false);
+ CoreExport std::string ToLongString(unsigned long duration, bool brief = false);
/** Converts a number of seconds to a duration string.
*