Merge "registration: Let extensions add PHP version requirements"
[lhc/web/wiklou.git] / includes / utils / UIDGenerator.php
index c23d999..52740c9 100644 (file)
@@ -84,7 +84,7 @@ class UIDGenerator {
        }
 
        /**
-        * @todo: move to MW-specific factory class and inject temp dir
+        * @todo move to MW-specific factory class and inject temp dir
         * @return UIDGenerator
         */
        protected static function singleton() {
@@ -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();