]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: every time
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Wed, 19 Nov 2025 17:02:29 +0000 (12:02 -0500)
committerJosh Soref <2119212+jsoref@users.noreply.github.com>
Thu, 20 Nov 2025 12:31:10 +0000 (07:31 -0500)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
pdns/dnsdistdist/docs/reference/config.rst
pdns/tcpiohandler.hh

index 402927f0b1b8930c9557dc1f961bea6bb62f7dff..65e82ae8fe123497867203dcde5c7533d222ba61 100644 (file)
@@ -1892,7 +1892,7 @@ faster than the existing rules.
 
     .. versionadded:: 1.9.0
 
-    Set a Lua function that will be called everytime a new dynamic block is inserted. The function receives:
+    Set a Lua function that will be called every time a new dynamic block is inserted. The function receives:
 
     * an integer whose value is 0 if the block is Netmask-based one (Client IP or range) and 1 instead (Domain name suffix)
     * the key (Client IP/range or domain suffix) as a string
@@ -2368,7 +2368,7 @@ Other functions
 
   .. versionadded:: 1.9.6
 
-  Set a Lua function that will be called everytime a new tickets key is added. The function receives:
+  Set a Lua function that will be called every time a new tickets key is added. The function receives:
 
   * the key content as a string
   * the keylen as an integer
index b282c6b52c12ed426a2700b546ba87bb397a0677..f031987a47c1a67052805960ea31da4928cfa71e 100644 (file)
@@ -382,7 +382,7 @@ public:
   }
 
   /* Tries to read exactly toRead - pos bytes into the buffer, starting at position pos.
-     Updates pos everytime a successful read occurs,
+     Updates pos every time a successful read occurs,
      throws an std::runtime_error in case of IO error,
      return Done when toRead bytes have been read, needRead or needWrite if the IO operation
      would block.
@@ -422,7 +422,7 @@ public:
   }
 
   /* Tries to write exactly toWrite - pos bytes from the buffer, starting at position pos.
-     Updates pos everytime a successful write occurs,
+     Updates pos every time a successful write occurs,
      throws an std::runtime_error in case of IO error,
      return Done when toWrite bytes have been written, needRead or needWrite if the IO operation
      would block.