diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 8e99912..c975563 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -418,7 +418,7 @@ abstract class DrupalCacheArray implements ArrayAccess { * Start the timer with the specified name. If you start and stop the same * timer multiple times, the measured intervals will be accumulated. * - * @param name + * @param $name * The name of the timer. */ function timer_start($name) { @@ -431,7 +431,7 @@ function timer_start($name) { /** * Read the current timer value without stopping the timer. * - * @param name + * @param $name * The name of the timer. * @return * The current timer value in ms. @@ -454,7 +454,7 @@ function timer_read($name) { /** * Stop the timer with the specified name. * - * @param name + * @param $name * The name of the timer. * @return * A timer array. The array contains the number of times the timer has been