From 62bf8368784147d08b77b44bfa5afb6b5b818fb6 Mon Sep 17 00:00:00 2001 From: westi Date: Sat, 28 Jan 2012 12:25:58 +0000 Subject: [PATCH] Fix my spelling mistakes and typos in the wp_debug_backtrace_summary() phpDoc props duck_ see #19589. git-svn-id: http://svn.automattic.com/wordpress/trunk@19774 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index f41da9466..cf3c3a0d1 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -3664,9 +3664,9 @@ function wp_allowed_protocols() { * @link http://core.trac.wordpress.org/ticket/19589 * @since 3.4 * - * @param string $ignore_class A class to ignore all function calls within - useful when you want to just give info about the calllee + * @param string $ignore_class A class to ignore all function calls within - useful when you want to just give info about the callee * @param string $skip_frames A number of stack frames to skip - useful for unwinding back to the source of the issue - * @param bool $pretty Whether or not you want a comma seperated string or raw array returned + * @param bool $pretty Whether or not you want a comma separated string or raw array returned * @return string|array Either a string containing a reversed comma seperated trace or an array of individual calls. */ function wp_debug_backtrace_summary( $ignore_class = null, $skip_frames = 0, $pretty = true ) {