From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 19 Nov 2025 17:02:29 +0000 (-0500) Subject: spelling: every time X-Git-Tag: rec-5.4.0-alpha1~61^2~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aff422f2fa151ec52ce510b19f17d8f7fa121c0a;p=thirdparty%2Fpdns.git spelling: every time Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- diff --git a/pdns/dnsdistdist/docs/reference/config.rst b/pdns/dnsdistdist/docs/reference/config.rst index 402927f0b1..65e82ae8fe 100644 --- a/pdns/dnsdistdist/docs/reference/config.rst +++ b/pdns/dnsdistdist/docs/reference/config.rst @@ -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 diff --git a/pdns/tcpiohandler.hh b/pdns/tcpiohandler.hh index b282c6b52c..f031987a47 100644 --- a/pdns/tcpiohandler.hh +++ b/pdns/tcpiohandler.hh @@ -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.