diff options
author | Matěj Suchánek <matejsuchanek97@gmail.com> | 2022-05-09 11:09:00 +0200 |
---|---|---|
committer | Matěj Suchánek <matejsuchanek97@gmail.com> | 2022-05-10 12:46:11 +0000 |
commit | e47c44107882ecdd58ae900f9d8b176688160d68 (patch) | |
tree | d58b32ba31c6dc9ae43aed0f14ea5cbd77ca02a0 /includes/xml | |
parent | e9eb4f60d68f9ed4e7cd693d3e85b4e1d7945672 (diff) | |
download | mediawikicore-e47c44107882ecdd58ae900f9d8b176688160d68.tar.gz mediawikicore-e47c44107882ecdd58ae900f9d8b176688160d68.zip |
Fix many typos in comments
Found using IntelliJ's "Typo" code inspection.
Change-Id: I746220ebe6e1e39f6cb503390ec9053e6518cf16
Diffstat (limited to 'includes/xml')
-rw-r--r-- | includes/xml/Xml.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/xml/Xml.php b/includes/xml/Xml.php index 1ea4455d993a..418256bab64a 100644 --- a/includes/xml/Xml.php +++ b/includes/xml/Xml.php @@ -479,7 +479,7 @@ class Xml { if ( $useMediaWikiUIEverywhere ) { $baseAttrs['class'] = 'mw-ui-button mw-ui-progressive'; } - // Any custom attributes will take precendence of anything in baseAttrs e.g. override the class + // Any custom attributes will take precedence of anything in baseAttrs e.g. override the class $attribs += $baseAttrs; return Html::element( 'input', $attribs ); } |