Merge "registration: Let extensions add PHP version requirements"
[lhc/web/wiklou.git] / includes / utils / UIDGenerator.php
index d184e92..52740c9 100644 (file)
@@ -365,7 +365,7 @@ class UIDGenerator {
                $counter = null; // post-increment persistent counter value
 
                // Use APC/etc if requested, available, and not in CLI mode;
-               // Counter values would not survive accross script instances in CLI mode.
+               // Counter values would not survive across script instances in CLI mode.
                $cache = null;
                if ( ( $flags & self::QUICK_VOLATILE ) && !wfIsCLI() ) {
                        $cache = MediaWikiServices::getInstance()->getLocalServerObjectCache();