Skip to content

Commit 4903db0

Browse files
authored
fix(constants): correct MS_PER_10_SEC value
1 parent 53e5f02 commit 4903db0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/time_shield_cpp/time_shield/constants.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace time_shield {
3838
constexpr int64_t MS_PER_SEC = 1000; ///< Milliseconds per second
3939
constexpr int64_t MS_PER_1_SEC = 1000; ///< Milliseconds per 1 second
4040
constexpr int64_t MS_PER_5_SEC = 5000; ///< Milliseconds per 5 second
41-
constexpr int64_t MS_PER_10_SEC = 5000; ///< Milliseconds per 10 second
41+
constexpr int64_t MS_PER_10_SEC = 10000; ///< Milliseconds per 10 seconds
4242
constexpr int64_t MS_PER_15_SEC = 15000; ///< Milliseconds per 15 second
4343
constexpr int64_t MS_PER_30_SEC = 30000; ///< Milliseconds per 30 second
4444
constexpr int64_t MS_PER_MIN = 60000; ///< Milliseconds per minute

0 commit comments

Comments
 (0)