Fix spelling errors in comments and documentation (#7492)

This commit is contained in:
Josh Soref
2020-05-14 03:41:58 -04:00
committed by GitHub
parent c78045c13f
commit 2c56d6de81
134 changed files with 215 additions and 215 deletions

View File

@@ -35,7 +35,7 @@ func NewTestStatsd() *Statsd {
return &s
}
// Test that MaxTCPConections is respected
// Test that MaxTCPConnections is respected
func TestConcurrentConns(t *testing.T) {
listener := Statsd{
Log: testutil.Logger{},
@@ -66,7 +66,7 @@ func TestConcurrentConns(t *testing.T) {
assert.Zero(t, acc.NFields())
}
// Test that MaxTCPConections is respected when max==1
// Test that MaxTCPConnections is respected when max==1
func TestConcurrentConns1(t *testing.T) {
listener := Statsd{
Log: testutil.Logger{},
@@ -95,7 +95,7 @@ func TestConcurrentConns1(t *testing.T) {
assert.Zero(t, acc.NFields())
}
// Test that MaxTCPConections is respected
// Test that MaxTCPConnections is respected
func TestCloseConcurrentConns(t *testing.T) {
listener := Statsd{
Log: testutil.Logger{},