You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bc...@apache.org on 2014/05/30 23:05:16 UTC

[44/50] [abbrv] git commit: fixing spelling mistakes for ts_lua documentation

fixing spelling mistakes for ts_lua documentation


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/715e4a23
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/715e4a23
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/715e4a23

Branch: refs/heads/5.0.x
Commit: 715e4a23873c8e39cb47dc1b0bd35e48fedc4601
Parents: 515f312
Author: Kit Chan <ki...@apache.org>
Authored: Fri May 30 07:47:57 2014 +0000
Committer: Kit Chan <ki...@apache.org>
Committed: Fri May 30 07:47:57 2014 +0000

----------------------------------------------------------------------
 doc/reference/plugins/ts_lua.en.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/715e4a23/doc/reference/plugins/ts_lua.en.rst
----------------------------------------------------------------------
diff --git a/doc/reference/plugins/ts_lua.en.rst b/doc/reference/plugins/ts_lua.en.rst
index c7bcf12..3e190c0 100644
--- a/doc/reference/plugins/ts_lua.en.rst
+++ b/doc/reference/plugins/ts_lua.en.rst
@@ -1426,9 +1426,9 @@ This function is usually called after we hook TS_LUA_RESPONSE_TRANSFORM.
 
 `TOP <#ts-lua-plugin>`_
 
-ts.http.set_remapping_set
+ts.http.skip_remapping_set
 -------------------------
-**syntax:** *ts.http.set_remapping_set(BOOL)*
+**syntax:** *ts.http.skip_remapping_set(BOOL)*
 
 **context:** do_global_read_request
 
@@ -1439,7 +1439,7 @@ Here is an example:
 ::
 
     function do_global_read_request()
-        ts.http.set_remapping_set(0);
+        ts.http.skip_remapping_set(1);
         ts.client_request.header['Host'] = 'www.yahoo.com'
         return 0
     end