diff --git a/src/core/model/nstime.h b/src/core/model/nstime.h index 1f9ae6601658376861c821b490e04dd0060b2677..7bb07b4724993c95cc3f7cb5c1782ed30678f465 100644 --- a/src/core/model/nstime.h +++ b/src/core/model/nstime.h @@ -687,14 +687,14 @@ Ptr<const AttributeChecker> MakeTimeChecker (void) } /** - * \brief Helper to make a Time checker with an upper bound + * \brief Helper to make a Time checker with a lower bound. * * \return the AttributeChecker */ inline -Ptr<const AttributeChecker> MakeTimeChecker (const Time max) +Ptr<const AttributeChecker> MakeTimeChecker (const Time min) { - return MakeTimeChecker (Time::Min (), max); + return MakeTimeChecker (min, Time::Max ()); }