]> git.mxchange.org Git - friendica.git/commitdiff
spelling: nonexistent
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Tue, 21 Mar 2023 03:17:02 +0000 (23:17 -0400)
committerJosh Soref <2119212+jsoref@users.noreply.github.com>
Sun, 26 Mar 2023 20:14:15 +0000 (16:14 -0400)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
mod/message.php
src/Network/Probe.php
src/Protocol/ActivityPub/Queue.php
src/Util/PidFile.php
tests/src/Core/Config/ConfigTest.php
tests/src/Core/PConfig/PConfigTest.php

index 99fb6b3b41cbc4e39787175edfd0921c2a8d8c95..928f575ef38b0bfe729d146e1e1bb7d6b2bab71e 100644 (file)
@@ -436,7 +436,7 @@ function render_messages(array $msg, string $t): string
                $to_name_e = $rr['name'];
 
                if (is_null($rr['url'])) {
-                       // contact-id is pointing to a non existing contact
+                       // contact-id is pointing to a nonexistent contact
                        continue;
                }
 
index 88c256fe08d9975046423a67887672424b95bee9..02498827e8c996575f979ebcba99ffbfad673263 100644 (file)
@@ -2280,7 +2280,7 @@ class Probe
                                ]
                        ];
                } catch (Exception $e) {
-                       // Default values for non existing targets
+                       // Default values for nonexistent targets
                        $data = [
                                'name' => $url, 'nick' => $url, 'url' => $url, 'network' => Protocol::PHANTOM,
                                'photo' => DI::baseUrl() . Contact::DEFAULT_AVATAR_PHOTO
index 9180de08f26d8322a52471a09d74e6fd1bff21c2..d77785fe67b779d978d8fa16d687e92bf8e6202b 100644 (file)
@@ -252,7 +252,7 @@ class Queue
        {
                $entries = DBA::select('inbox-entry', ['id', 'type', 'object-type', 'object-id', 'in-reply-to-id'], ["`trust` AND `wid` IS NULL"], ['order' => ['id' => true]]);
                while ($entry = DBA::fetch($entries)) {
-                       // Don't process entries of items that are answer to non existing posts
+                       // Don't process entries of items that are answer to nonexistent posts
                        if (!empty($entry['in-reply-to-id']) && !Post::exists(['uri' => $entry['in-reply-to-id']])) {
                                continue;
                        }
index 649a156793c5ba70a7f0f36b8d4dc3adc70f35d0..1d9019d73497afc8360b1175cb03f5b365f1994d 100644 (file)
@@ -31,7 +31,7 @@ class PidFile
         *
         * @param string $file Filename of pid file
         *
-        * @return boolean|string PID or "false" if noexistent
+        * @return boolean|string PID or "false" if nonexistent
         */
        private static function pidFromFile(string $file)
        {
index cf13ea05ae19494db81bcf02400648c4edf655e1..b526fc13b50f5c7849a7e27620a08c11ce4290e6 100644 (file)
@@ -346,7 +346,7 @@ class ConfigTest extends DatabaseTest
                // without refresh
                self::assertNull($this->testedConfig->get('test', 'it'));
 
-               /// beware that the cache returns '!<unset>!' and not null for a non existing value
+               /// beware that the cache returns '!<unset>!' and not null for a nonexistent value
                self::assertNull($this->testedConfig->getCache()->get('test', 'it'));
 
                // with default value
index 2aade836da1e5609f26603fef1608eac839530e9..784f81b2edb904e62fe679d6fe23adeb4e5d5957 100644 (file)
@@ -324,7 +324,7 @@ abstract class PConfigTest extends MockedTest
                // without refresh
                self::assertNull($this->testedConfig->get(0, 'test', 'it'));
 
-               /// beware that the cache returns '!<unset>!' and not null for a non existing value
+               /// beware that the cache returns '!<unset>!' and not null for a nonexistent value
                self::assertNull($this->testedConfig->getCache()->get(0, 'test', 'it'));
 
                // with default value