浏览代码

Fix typos

Signed-off-by: chenyuzhu <chenyuzhi@oschina.cn>
chenyuzhu 7 年之前
父节点
当前提交
5ac0d2f0b8
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      pkg/fileutils/fileutils.go
  2. 1 1
      pkg/namesgenerator/names-generator.go
  3. 1 1
      pkg/stdcopy/stdcopy_test.go

+ 1 - 1
pkg/fileutils/fileutils.go

@@ -13,7 +13,7 @@ import (
 	"github.com/sirupsen/logrus"
 )
 
-// PatternMatcher allows checking paths agaist a list of patterns
+// PatternMatcher allows checking paths against a list of patterns
 type PatternMatcher struct {
 	patterns   []*Pattern
 	exclusions bool

+ 1 - 1
pkg/namesgenerator/names-generator.go

@@ -198,7 +198,7 @@ var (
 		// Asima Chatterjee was an indian organic chemist noted for her research on vinca alkaloids, development of drugs for treatment of epilepsy and malaria - https://en.wikipedia.org/wiki/Asima_Chatterjee
 		"chatterjee",
 
-		// Pafnuty Chebyshev - Russian mathematitian. He is known fo his works on probability, statistics, mechanics, analytical geometry and number theory https://en.wikipedia.org/wiki/Pafnuty_Chebyshev
+		// Pafnuty Chebyshev - Russian mathematician. He is known fo his works on probability, statistics, mechanics, analytical geometry and number theory https://en.wikipedia.org/wiki/Pafnuty_Chebyshev
 		"chebyshev",
 
 		//Claude Shannon - The father of information theory and founder of digital circuit design theory. (https://en.wikipedia.org/wiki/Claude_Shannon)

+ 1 - 1
pkg/stdcopy/stdcopy_test.go

@@ -23,7 +23,7 @@ func TestWriteWithUninitializedStdWriter(t *testing.T) {
 	}
 	n, err := writer.Write([]byte("Something here"))
 	if n != 0 || err == nil {
-		t.Fatalf("Should fail when given an uncomplete or uninitialized StdWriter")
+		t.Fatalf("Should fail when given an incomplete or uninitialized StdWriter")
 	}
 }