You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ki...@apache.org on 2019/07/12 04:57:59 UTC

[trafficserver] branch master updated: Fix typo in lua plugin documentation

This is an automated email from the ASF dual-hosted git repository.

kichan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 3dafb1b  Fix typo in lua plugin documentation
3dafb1b is described below

commit 3dafb1b229de8e427a5911da046ea5a437c78a54
Author: Kit Chan <ki...@apache.org>
AuthorDate: Mon Jul 1 01:39:34 2019 -0700

    Fix typo in lua plugin documentation
---
 doc/admin-guide/plugins/lua.en.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/admin-guide/plugins/lua.en.rst b/doc/admin-guide/plugins/lua.en.rst
index 108d56b..3ff3240 100644
--- a/doc/admin-guide/plugins/lua.en.rst
+++ b/doc/admin-guide/plugins/lua.en.rst
@@ -3429,7 +3429,7 @@ Here is an example:
 ::
 
     function do_remap()
-        ts.http.timeout_set(TS_LUA_TIMEOUT_DNS, 30)    -- 30 seconds
+        ts.http.timeout_set(TS_LUA_TIMEOUT_DNS, 30)    -- 30 ms
         return 0
     end