This is an automated email from the ASF dual-hosted git repository.
spacewander pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix.git
The following commit(s) were added to refs/heads/master by this push:
new 91b0977 docs: fix typo in testing-framework (#5201)
91b0977 is described below
commit 91b09775735a2a809dbce787f23915fdd8f308f6
Author: 罗泽轩 <[email protected]>
AuthorDate: Tue Oct 12 09:52:34 2021 +0800
docs: fix typo in testing-framework (#5201)
---
docs/en/latest/internal/testing-framework.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/en/latest/internal/testing-framework.md
b/docs/en/latest/internal/testing-framework.md
index 325b89a..db86729 100644
--- a/docs/en/latest/internal/testing-framework.md
+++ b/docs/en/latest/internal/testing-framework.md
@@ -135,8 +135,8 @@ One request after another:
location /t {
content_by_lua_block {
local http = require "resty.http"
- local uri = "http://127.0.0.1:" ... ngx.var.server_port
- ... "/server_port"
+ local uri = "http://127.0.0.1:" .. ngx.var.server_port
+ .. "/server_port"
local ports_count = {}
for i = 1, 12 do
@@ -157,8 +157,8 @@ Sending multiple requests concurrently:
location /t {
content_by_lua_block {
local http = require "resty.http"
- local uri = "http://127.0.0.1:" ... ngx.var.server_port
- ... "/server_port?var=2&var2="
+ local uri = "http://127.0.0.1:" .. ngx.var.server_port
+ .. "/server_port?var=2&var2="
local t = {}