aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel M. Weeks <dan@danweeks.net>2015-04-08 20:00:00 -0400
committerCarbenium <keresztesschmidt@gmail.com>2015-04-15 19:29:36 +0200
commitc25a06f4b6af049b0660fc215b30ebc11362b600 (patch)
treeabe89600954562f3a9bbc9b0312f2f482d28ba4f /src
parent67faa0f458aa0bd3ef939f527ac6406f0b4ff56c (diff)
Fix documentation
(cherry picked from commit 62ff887236ad835f1353c415ae6baca6ac6b94b8)
Diffstat (limited to 'src')
-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 0a4e5e4a4a0..cd523511c1d 100644
--- a/src/server/shared/Utilities/Util.h
+++ b/src/server/shared/Utilities/Util.h
@@ -688,8 +688,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)
{
@@ -839,7 +840,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;