diff options
author | Daniel Gruno <humbedooh@apache.org> | 2012-08-06 00:24:17 +0200 |
---|---|---|
committer | Daniel Gruno <humbedooh@apache.org> | 2012-08-06 00:24:17 +0200 |
commit | 284dc4ee6ccf69b0552b8fad91bd1fe86435a8da (patch) | |
tree | 7ab8d9666d415acd17e55879947b8ccf580573d0 /docs/manual/mod/mod_lua.xml | |
parent | xforms (diff) | |
download | apache2-284dc4ee6ccf69b0552b8fad91bd1fe86435a8da.tar.xz apache2-284dc4ee6ccf69b0552b8fad91bd1fe86435a8da.zip |
Fix some typos and wordings
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1369696 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | docs/manual/mod/mod_lua.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index dbeec10810..03afd9f01e 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -649,8 +649,8 @@ end <dt>server:</dt> <dd>This one is different than others because the server scope is quite long lived, and multiple threads - will have the same server_rec. To accommodate this - server scoped interpreter are stored in an apr + will have the same server_rec. To accommodate this, + server scoped Lua states are stored in an apr resource list. The <code>min</code> and <code>max</code> arguments specify the minimum and maximum number of Lua states to keep in the pool.</dd> @@ -665,7 +665,7 @@ end maximum performance. While the <code>thread</code> scope will provide the fastest responses, the <code>server</code> scope will use less memory, as states are pooled, allowing f.x. 1000 threads to share only 100 Lua states, - thus using only 10% of the memory requried by the <code>thread</code> scope. + thus using only 10% of the memory required by the <code>thread</code> scope. </p> </usage> </directivesynopsis> @@ -682,8 +682,8 @@ end <p>This directive matches a uri pattern to invoke a specific handler function in a specific file. It uses PCRE regular expressions to match the uri, and supports interpolating - match groups into both the file path and the function name - be careful writing your regular expressions to avoid security + match groups into both the file path and the function name. + Be careful writing your regular expressions to avoid security issues.</p> <example><title>Examples:</title> <highlight language="config"> |