Fix typos

Signed-off-by: chenyuzhu <chenyuzhi@oschina.cn>
This commit is contained in:
chenyuzhu 2018-05-16 09:06:43 +08:00
parent 6de3be1366
commit 5ac0d2f0b8
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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)

View File

@ -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")
}
}