diff options
author | Martin Urbanec <martin.urbanec@wikimedia.cz> | 2024-01-18 10:10:45 +0100 |
---|---|---|
committer | Martin Urbanec <martin.urbanec@wikimedia.cz> | 2024-01-18 10:10:45 +0100 |
commit | ba73fd5837adab3e353b33213fa7f76e1e6df4ab (patch) | |
tree | 0401db997f08e6b1b47b139e06b12bb03e73ed40 /includes/user/Options | |
parent | 0c1813d4b7e928909ba63a81964237af1fe9ffa4 (diff) | |
download | mediawikicore-ba73fd5837adab3e353b33213fa7f76e1e6df4ab.tar.gz mediawikicore-ba73fd5837adab3e353b33213fa7f76e1e6df4ab.zip |
UserOptionsManager: Fix a typo
Within Ib145efbd337b7f09eed86d2873228a1b503d02f3,
I accidentally left a g within the comment. Remove it.
Change-Id: I4499f5348ee795cde4e5aecd4ae82e88f0973b6a
Diffstat (limited to 'includes/user/Options')
-rw-r--r-- | includes/user/Options/UserOptionsManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/user/Options/UserOptionsManager.php b/includes/user/Options/UserOptionsManager.php index 0ac90f64c10c..e4d579a76276 100644 --- a/includes/user/Options/UserOptionsManager.php +++ b/includes/user/Options/UserOptionsManager.php @@ -718,7 +718,7 @@ class UserOptionsManager extends UserOptionsLookup { * @return bool */ private function isValueEqual( $a, $b ) { - // null is only equal to another null (T355086)g + // null is only equal to another null (T355086) if ( $a === null || $b === null ) { return $a === $b; } |