aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/server/shared/Utilities/Util.h7
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;