From 334f2a7d051a184046b847a4f53b2d9ff8dd9723 Mon Sep 17 00:00:00 2001 From: webchick Date: Wed, 5 Oct 2011 08:49:34 -0700 Subject: Issue #1295502 by pillarsdotnet: Fixed Add missing '$' character to docblock for timer_start(), timer_read(), and timer_stop() functions. --- includes/bootstrap.inc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'includes/bootstrap.inc') diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index e76d52699..82c3956a6 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,8 +431,9 @@ 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,8 +455,9 @@ 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 * started and stopped (count) and the accumulated timer value in ms (time). -- cgit v1.2.3