From 0b40ac2dbc05b6b40790456308009145e88c7383 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Fri, 19 Jul 2019 12:40:14 +0200 Subject: [PATCH] Fixed typos in comments Just nitpicky typo fixes. --- server/controller/resource.go | 2 +- tests/ci/health/health_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/controller/resource.go b/server/controller/resource.go index fce8b3e..8428a1f 100644 --- a/server/controller/resource.go +++ b/server/controller/resource.go @@ -38,7 +38,7 @@ type ResourceController struct { // For http proxies, forwarding http requests HttpReverseProxy *vhost.HttpReverseProxy - // For https proxies, route requests to different clients by hostname and other infomation + // For https proxies, route requests to different clients by hostname and other information VhostHttpsMuxer *vhost.HttpsMuxer // Controller for nat hole connections diff --git a/tests/ci/health/health_test.go b/tests/ci/health/health_test.go index fd1a528..99ee22b 100644 --- a/tests/ci/health/health_test.go +++ b/tests/ci/health/health_test.go @@ -72,7 +72,7 @@ health_check_url = /health func TestHealthCheck(t *testing.T) { assert := assert.New(t) - // ****** start backgroud services ****** + // ****** start background services ****** echoSvc1 := mock.NewEchoServer(15001, 1, "echo1") err := echoSvc1.Start() if assert.NoError(err) {