chore: remove duplicate word in comments

Signed-off-by: Abirdcfly <fp544037857@gmail.com>
This commit is contained in:
Abirdcfly 2022-08-29 10:55:28 +08:00
parent 9d077b02cf
commit 77840431e6
No known key found for this signature in database
GPG Key ID: A4EA876831B0458B
2 changed files with 2 additions and 2 deletions

View File

@ -883,7 +883,7 @@ custom_domains = test.example.com
host_header_rewrite = dev.example.com
```
The HTTP request will have the the `Host` header rewritten to `Host: dev.example.com` when it reaches the actual web server, although the request from the browser probably has `Host: test.example.com`.
The HTTP request will have the `Host` header rewritten to `Host: dev.example.com` when it reaches the actual web server, although the request from the browser probably has `Host: test.example.com`.
### Setting other HTTP Headers

View File

@ -68,7 +68,7 @@ func PrunedStack(skip int) []byte {
fullStackTrace := debug.Stack()
stack := bytes.Split(fullStackTrace, []byte("\n"))
// Ensure that the even entries are the method names and the
// the odd entries the source code information.
// odd entries the source code information.
if len(stack) > 0 && bytes.HasPrefix(stack[0], []byte("goroutine ")) {
// Ignore "goroutine 29 [running]:" line.
stack = stack[1:]