From: Pascal Borreli Date: Fri, 13 Jul 2012 17:00:31 +0000 (+0200) Subject: Fixing typos X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=30a168c7e302a3a35285ced0446d4ac63aad1e00;p=web%2Fkonrad%2Ftwig.git Fixing typos --- diff --git a/lib/Twig/Extension/Debug.php b/lib/Twig/Extension/Debug.php index 8059df0..3dc4d2d 100644 --- a/lib/Twig/Extension/Debug.php +++ b/lib/Twig/Extension/Debug.php @@ -17,7 +17,7 @@ class Twig_Extension_Debug extends Twig_Extension */ public function getFunctions() { - // dump is safe if var_dump is overriden by xdebug + // dump is safe if var_dump is overridden by xdebug $isDumpOutputHtmlSafe = extension_loaded('xdebug') // false means that it was not set (and the default is on) or it explicitly enabled && (false === ini_get('xdebug.overload_var_dump') || ini_get('xdebug.overload_var_dump')) diff --git a/lib/Twig/Template.php b/lib/Twig/Template.php index 7ecdba4..7b98468 100644 --- a/lib/Twig/Template.php +++ b/lib/Twig/Template.php @@ -284,7 +284,7 @@ abstract class Twig_Template implements Twig_TemplateInterface * This method is for internal use only and should never be called * directly. * - * This method should not be overriden in a sub-class as this is an + * This method should not be overridden in a sub-class as this is an * implementation detail that has been introduced to optimize variable * access for versions of PHP before 5.4. This is not a way to override * the way to get a variable value.