Fixed parser report typo
authorAaron Schulz <aschulz@wikimedia.org>
Sat, 29 Aug 2015 00:06:45 +0000 (17:06 -0700)
committerAaron Schulz <aschulz@wikimedia.org>
Sat, 29 Aug 2015 00:06:45 +0000 (17:06 -0700)
Change-Id: Ia549f4e1932bc1196e840e154b8d6fb0b608d10d

includes/parser/Parser.php

index f538153..977aebe 100644 (file)
@@ -511,7 +511,7 @@ class Parser {
                        }
                        $limitReport .= 'Cached time: ' . $this->mOutput->getCacheTime() . "\n";
                        $limitReport .= 'Cache expiry: ' . $this->mOutput->getCacheExpiry() . "\n";
-                       $limitReport .= 'Dyanmic content: ' . ( $this->mOutput->hasDynamicContent() ? 'true' : 'false' ) . "\n";
+                       $limitReport .= 'Dynanmic content: ' . ( $this->mOutput->hasDynamicContent() ? 'true' : 'false' ) . "\n";
                        foreach ( $this->mOutput->getLimitReportData() as $key => $value ) {
                                if ( Hooks::run( 'ParserLimitReportFormat',
                                        array( $key, &$value, &$limitReport, false, false )