From 61819d059b783efc09f0dd6e5dc0061353818744 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Sat, 19 Jun 2004 06:48:02 +0000 Subject: [PATCH] Corrected spelling error --- includes/Parser.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/Parser.php b/includes/Parser.php index ff8a94f272..31cb12554a 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -786,7 +786,7 @@ cl_sortkey" ; $text = $wgDateFormatter->reformat( $this->mOptions->getDateFormat(), $text ); } $text = $this->doAllQuotes( $text ); - // $text = $this->doExponant( $text ); + // $text = $this->doExponent( $text ); $text = $this->replaceExternalLinks( $text ); $text = $this->replaceInternalLinks ( $text ); $text = $this->replaceInternalLinks ( $text ); @@ -808,9 +808,9 @@ cl_sortkey" ; } # Parse ^^ tokens and return html - /* private */ function doExponant ( $text ) + /* private */ function doExponent ( $text ) { - $fname = 'Parser::doExponant'; + $fname = 'Parser::doExponent'; wfProfileIn( $fname); $text = preg_replace('/\^\^(.*)\^\^/','\\1', $text); wfProfileOut( $fname); -- 2.20.1