From bccd2ad03b6dcf54ee6ad6ca34043dae402f7e04 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Fri, 11 Dec 2009 22:19:37 +0000 Subject: [PATCH] fix some doxygen errors --- includes/Profiler.php | 8 ++++---- includes/ProxyTools.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/includes/Profiler.php b/includes/Profiler.php index 9bd9e9a5e1..817b71ab2c 100644 --- a/includes/Profiler.php +++ b/includes/Profiler.php @@ -12,7 +12,7 @@ $wgProfiling = true; /** * Begin profiling of a function - * @param $functioname name of the function we will profile + * @param $functionname name of the function we will profile */ function wfProfileIn( $functionname ) { global $wgProfiler; @@ -21,7 +21,7 @@ function wfProfileIn( $functionname ) { /** * Stop profiling of a function - * @param $functioname name of the function we have profiled + * @param $functionname name of the function we have profiled */ function wfProfileOut( $functionname = 'missing' ) { global $wgProfiler; @@ -31,8 +31,8 @@ function wfProfileOut( $functionname = 'missing' ) { /** * Returns a profiling output to be stored in debug file * - * @param float $start - * @param float $elapsed time elapsed since the beginning of the request + * @param $start Float + * @param $elapsed Float: time elapsed since the beginning of the request */ function wfGetProfilingOutput( $start, $elapsed ) { global $wgProfiler; diff --git a/includes/ProxyTools.php b/includes/ProxyTools.php index a0ee5ca8e0..5719e3e8d6 100644 --- a/includes/ProxyTools.php +++ b/includes/ProxyTools.php @@ -124,7 +124,7 @@ function wfGetIP() { * Checks if an IP is a trusted proxy providor * Useful to tell if X-Fowarded-For data is possibly bogus * Squid cache servers for the site and AOL are whitelisted - * @param string $ip + * @param $ip String * @return bool */ function wfIsTrustedProxy( $ip ) { -- 2.20.1