From 7a1b87e54350d7e7c4cfe01d50145dcfc1cd64c2 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Fri, 28 Aug 2015 21:39:15 -0700 Subject: [PATCH] Really actually fix the typo in Parser.php Change-Id: I9d9c6f13095087ac2c2c6693c6bd1613219bf658 --- includes/parser/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index 977aebe59a..664f0a4be0 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -511,7 +511,7 @@ class Parser { } $limitReport .= 'Cached time: ' . $this->mOutput->getCacheTime() . "\n"; $limitReport .= 'Cache expiry: ' . $this->mOutput->getCacheExpiry() . "\n"; - $limitReport .= 'Dynanmic content: ' . ( $this->mOutput->hasDynamicContent() ? 'true' : 'false' ) . "\n"; + $limitReport .= 'Dynamic content: ' . ( $this->mOutput->hasDynamicContent() ? 'true' : 'false' ) . "\n"; foreach ( $this->mOutput->getLimitReportData() as $key => $value ) { if ( Hooks::run( 'ParserLimitReportFormat', array( $key, &$value, &$limitReport, false, false ) -- 2.20.1