summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-10-05 08:49:34 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-10-05 08:49:34 -0700
commit334f2a7d051a184046b847a4f53b2d9ff8dd9723 (patch)
tree27da4a4de76190d5ac9fe2a627672fa18602fe48 /includes
parenta9e52c050346f36b6e09e481e4de8afffc5c85f5 (diff)
downloadbrdo-334f2a7d051a184046b847a4f53b2d9ff8dd9723.tar.gz
brdo-334f2a7d051a184046b847a4f53b2d9ff8dd9723.tar.bz2
Issue #1295502 by pillarsdotnet: Fixed Add missing '$' character to docblock for timer_start(), timer_read(), and timer_stop() functions.
Diffstat (limited to 'includes')
-rw-r--r--includes/bootstrap.inc8
1 files changed, 5 insertions, 3 deletions
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).