diff --git a/README.md b/README.md index 3b3d0e8..8fff842 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/test/e2e/framework/log.go b/test/e2e/framework/log.go index b72b377..34ba293 100644 --- a/test/e2e/framework/log.go +++ b/test/e2e/framework/log.go @@ -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:]