diff options
author | Daniel M. Weeks <dan@danweeks.net> | 2015-04-08 20:00:00 -0400 |
---|---|---|
committer | Carbenium <keresztesschmidt@gmail.com> | 2015-04-15 19:20:04 +0200 |
commit | 62ff887236ad835f1353c415ae6baca6ac6b94b8 (patch) | |
tree | f6f337ae97760dd712dbfd47d77fce3cc7adb1b8 | |
parent | 64848856002a796e30b822d70a31087495084bfa (diff) |
Fix documentation
-rw-r--r-- | src/server/shared/Utilities/Util.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/server/shared/Utilities/Util.h b/src/server/shared/Utilities/Util.h index 26e7ef76d04..9a8514ea5ca 100644 --- a/src/server/shared/Utilities/Util.h +++ b/src/server/shared/Utilities/Util.h @@ -717,8 +717,9 @@ class EventMap /** * @name RepeatEvent - * @brief Repeats the mostly recently executed event. - * @param time Time until the event occurs. Equivalent to Repeat(urand(minTime, maxTime). + * @brief Repeats the mostly recently executed event, Equivalent to Repeat(urand(minTime, maxTime). + * @param minTime Minimum time until the event occurs. + * @param maxTime Maximum time until the event occurs. */ void Repeat(uint32 minTime, uint32 maxTime) { @@ -868,7 +869,7 @@ class EventMap /** * @name GetTimeUntilEvent * @brief Returns time in milliseconds until next event. - * @param Id of the event. + * @param eventId of the event. * @return Time of next event. */ uint32 GetTimeUntilEvent(uint32 eventId) const; |