From d97f24f3b22f926774809026fe3d716b4ff2a05b Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Sun, 28 Nov 2021 15:14:39 -0500 Subject: [PATCH] doc: grammar tweaks for recursordist lua-scripting --- pdns/recursordist/docs/lua-scripting/index.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pdns/recursordist/docs/lua-scripting/index.rst b/pdns/recursordist/docs/lua-scripting/index.rst index cd56c8d828..b15bed8a4a 100644 --- a/pdns/recursordist/docs/lua-scripting/index.rst +++ b/pdns/recursordist/docs/lua-scripting/index.rst @@ -2,10 +2,9 @@ Scripting PowerDNS Recursor =========================== In the PowerDNS Recursor, it is possible to modify resolving behaviour using simple scripts written in the `Lua `_ programming language. -These scripts can be used to quickly override dangerous domains, fix things that are wrong, for load balancing or for legal or commercial purposes. -The scripts can also protect you or your users from malicious traffic. +Lua scripts can be used for load balancing, legal reasons, commercial purposes, to quickly block dangerous domains or override problematic responses. -Lua is extremely fast and lightweight, easily supporting hundreds of thousands of queries per second. +Because Lua is extremely fast and lightweight, it easily supports hundreds of thousands of queries per second. The Lua language is explained very well in the excellent book `Programming in Lua `_. If you already have programming experience, `Learn Lua in 15 Minutes `_ is a great primer. @@ -13,7 +12,7 @@ For extra performance, a Just In Time compiled version of Lua called `LuaJIT