Skip to content

Commit 80ba6aa

Browse files
authored
Change mistakes to errors. (#128)
# Describe Request Change mistakes to errors. # Change Type Code maintenance.
1 parent b88aed2 commit 80ba6aa

22 files changed

+69
-69
lines changed

CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ community include:
2020
* Demonstrating empathy and kindness toward other people
2121
* Being respectful of differing opinions, viewpoints, and experiences
2222
* Giving and gracefully accepting constructive feedback
23-
* Accepting responsibility and apologizing to those affected by our mistakes,
23+
* Accepting responsibility and apologizing to those affected by our errors,
2424
and learning from the experience
2525
* Focusing on what is best not just for us as individuals, but for the
2626
overall community

README.md

+29-29
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ type Person struct {
3737

3838
person := &Person{}
3939

40-
mistakes, valid := checker.Check(person)
40+
errors, valid := checker.Check(person)
4141
if !valid {
42-
// Send the mistakes back to the user
42+
// Send the errors back to the user
4343
}
4444
```
4545

@@ -333,7 +333,7 @@ import (
333333
func main() {
334334
err := checker.IsASCII("Checker")
335335
if err != nil {
336-
// Send the mistakes back to the user
336+
// Send the errors back to the user
337337
}
338338
}
339339
```
@@ -365,7 +365,7 @@ import (
365365
func main() {
366366
err := checker.IsAlphanumeric("ABcd1234")
367367
if err != nil {
368-
// Send the mistakes back to the user
368+
// Send the errors back to the user
369369
}
370370
}
371371
```
@@ -398,7 +398,7 @@ func main() {
398398
err := checker.IsAmexCreditCard("378282246310005")
399399

400400
if err != nil {
401-
// Send the mistakes back to the user
401+
// Send the errors back to the user
402402
}
403403
}
404404
```
@@ -431,7 +431,7 @@ func main() {
431431
err := checker.IsAnyCreditCard("6011111111111117")
432432

433433
if err != nil {
434-
// Send the mistakes back to the user
434+
// Send the errors back to the user
435435
}
436436
}
437437
```
@@ -463,7 +463,7 @@ import (
463463
func main() {
464464
err := checker.IsCidr("2001:db8::/32")
465465
if err != nil {
466-
// Send the mistakes back to the user
466+
// Send the errors back to the user
467467
}
468468
}
469469
```
@@ -495,7 +495,7 @@ import (
495495
func main() {
496496
err := checker.IsDigits("1234")
497497
if err != nil {
498-
// Send the mistakes back to the user
498+
// Send the errors back to the user
499499
}
500500
}
501501
```
@@ -528,7 +528,7 @@ func main() {
528528
err := checker.IsDinersCreditCard("36227206271667")
529529

530530
if err != nil {
531-
// Send the mistakes back to the user
531+
// Send the errors back to the user
532532
}
533533
}
534534
```
@@ -561,7 +561,7 @@ func main() {
561561
err := checker.IsDiscoverCreditCard("6011111111111117")
562562

563563
if err != nil {
564-
// Send the mistakes back to the user
564+
// Send the errors back to the user
565565
}
566566
}
567567
```
@@ -593,7 +593,7 @@ import (
593593
func main() {
594594
err := checker.IsEmail("[email protected]")
595595
if err != nil {
596-
// Send the mistakes back to the user
596+
// Send the errors back to the user
597597
}
598598
}
599599
```
@@ -625,7 +625,7 @@ import (
625625
func main() {
626626
err := checker.IsFqdn("zdo.com")
627627
if err != nil {
628-
// Send the mistakes back to the user
628+
// Send the errors back to the user
629629
}
630630
}
631631
```
@@ -657,7 +657,7 @@ import (
657657
func main() {
658658
err := checker.IsIP("2001:db8::68")
659659
if err != nil {
660-
// Send the mistakes back to the user
660+
// Send the errors back to the user
661661
}
662662
}
663663
```
@@ -689,7 +689,7 @@ import (
689689
func main() {
690690
err := checker.IsIPV4("192.168.1.1")
691691
if err != nil {
692-
// Send the mistakes back to the user
692+
// Send the errors back to the user
693693
}
694694
}
695695
```
@@ -722,7 +722,7 @@ func main() {
722722
err := checker.IsIPV6("2001:db8::68")
723723

724724
if err != nil {
725-
// Send the mistakes back to the user
725+
// Send the errors back to the user
726726
}
727727
}
728728
```
@@ -754,7 +754,7 @@ import (
754754
func main() {
755755
err := checker.IsISBN("1430248270")
756756
if err != nil {
757-
// Send the mistakes back to the user
757+
// Send the errors back to the user
758758
}
759759
}
760760
```
@@ -786,7 +786,7 @@ import (
786786
func main() {
787787
err := checker.IsISBN10("1430248270")
788788
if err != nil {
789-
// Send the mistakes back to the user
789+
// Send the errors back to the user
790790
}
791791
}
792792
```
@@ -818,7 +818,7 @@ import (
818818
func main() {
819819
err := checker.IsISBN13("9781430248279")
820820
if err != nil {
821-
// Send the mistakes back to the user
821+
// Send the errors back to the user
822822
}
823823
}
824824
```
@@ -851,7 +851,7 @@ func main() {
851851
err := checker.IsJcbCreditCard("3530111333300000")
852852

853853
if err != nil {
854-
// Send the mistakes back to the user
854+
// Send the errors back to the user
855855
}
856856
}
857857
```
@@ -883,7 +883,7 @@ import (
883883
func main() {
884884
err := checker.IsLuhn("4012888888881881")
885885
if err != nil {
886-
// Send the mistakes back to the user
886+
// Send the errors back to the user
887887
}
888888
}
889889
```
@@ -915,7 +915,7 @@ import (
915915
func main() {
916916
err := checker.IsMac("00:00:5e:00:53:01")
917917
if err != nil {
918-
// Send the mistakes back to the user
918+
// Send the errors back to the user
919919
}
920920
}
921921
```
@@ -948,7 +948,7 @@ func main() {
948948
err := checker.IsMasterCardCreditCard("5555555555554444")
949949

950950
if err != nil {
951-
// Send the mistakes back to the user
951+
// Send the errors back to the user
952952
}
953953
}
954954
```
@@ -982,7 +982,7 @@ func main() {
982982

983983
err := checker.IsMax(quantity, 10)
984984
if err != nil {
985-
// Send the mistakes back to the user
985+
// Send the errors back to the user
986986
}
987987
}
988988
```
@@ -1016,7 +1016,7 @@ func main() {
10161016

10171017
err := checker.IsMaxLength(s, 4)
10181018
if err != nil {
1019-
// Send the mistakes back to the user
1019+
// Send the errors back to the user
10201020
}
10211021
}
10221022
```
@@ -1050,7 +1050,7 @@ func main() {
10501050

10511051
err := checker.IsMin(age, 21)
10521052
if err != nil {
1053-
// Send the mistakes back to the user
1053+
// Send the errors back to the user
10541054
}
10551055
}
10561056
```
@@ -1084,7 +1084,7 @@ func main() {
10841084

10851085
err := checker.IsMinLength(s, 4)
10861086
if err != nil {
1087-
// Send the mistakes back to the user
1087+
// Send the errors back to the user
10881088
}
10891089
}
10901090
```
@@ -1150,7 +1150,7 @@ import (
11501150
func main() {
11511151
err := checker.IsURL("https://zdo.com")
11521152
if err != nil {
1153-
// Send the mistakes back to the user
1153+
// Send the errors back to the user
11541154
}
11551155
}
11561156
```
@@ -1183,7 +1183,7 @@ func main() {
11831183
err := checker.IsUnionPayCreditCard("6200000000000005")
11841184

11851185
if err != nil {
1186-
// Send the mistakes back to the user
1186+
// Send the errors back to the user
11871187
}
11881188
}
11891189
```
@@ -1216,7 +1216,7 @@ func main() {
12161216
err := checker.IsVisaCreditCard("4111111111111111")
12171217

12181218
if err != nil {
1219-
// Send the mistakes back to the user
1219+
// Send the errors back to the user
12201220
}
12211221
}
12221222
```

alphanumeric_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
func ExampleIsAlphanumeric() {
1515
err := checker.IsAlphanumeric("ABcd1234")
1616
if err != nil {
17-
// Send the mistakes back to the user
17+
// Send the errors back to the user
1818
}
1919
}
2020

ascii_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
func ExampleIsASCII() {
1515
err := checker.IsASCII("Checker")
1616
if err != nil {
17-
// Send the mistakes back to the user
17+
// Send the errors back to the user
1818
}
1919
}
2020

checker.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func Check(s interface{}) (Errors, bool) {
7575
panic("expecting struct")
7676
}
7777

78-
errors := Errors{}
78+
errs := Errors{}
7979

8080
jobs := []checkerJob{
8181
{
@@ -118,14 +118,14 @@ func Check(s interface{}) (Errors, bool) {
118118
} else {
119119
for _, checker := range initCheckers(job.Config) {
120120
if err := checker(job.Value, job.Parent); err != nil {
121-
errors[job.Name] = err
121+
errs[job.Name] = err
122122
break
123123
}
124124
}
125125
}
126126
}
127127

128-
return errors, len(errors) == 0
128+
return errs, len(errs) == 0
129129
}
130130

131131
// initCheckers initializes the checkers provided in the config.

checker_test.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,16 @@ func TestCheckInvalid(t *testing.T) {
6060

6161
person := &Person{}
6262

63-
mistakes, valid := Check(person)
63+
errors, valid := Check(person)
6464
if valid {
6565
t.Fail()
6666
}
6767

68-
if len(mistakes) != 1 {
68+
if len(errors) != 1 {
6969
t.Fail()
7070
}
7171

72-
if mistakes["Name"] != ErrRequired {
72+
if errors["Name"] != ErrRequired {
7373
t.Fail()
7474
}
7575
}
@@ -83,12 +83,12 @@ func TestCheckValid(t *testing.T) {
8383
Name: "Onur",
8484
}
8585

86-
mistakes, valid := Check(person)
86+
errors, valid := Check(person)
8787
if !valid {
8888
t.Fail()
8989
}
9090

91-
if len(mistakes) != 0 {
91+
if len(errors) != 0 {
9292
t.Fail()
9393
}
9494
}
@@ -112,20 +112,20 @@ func TestCheckNestedStruct(t *testing.T) {
112112

113113
person := &Person{}
114114

115-
mistakes, valid := Check(person)
115+
errors, valid := Check(person)
116116
if valid {
117117
t.Fail()
118118
}
119119

120-
if len(mistakes) != 2 {
120+
if len(errors) != 2 {
121121
t.Fail()
122122
}
123123

124-
if mistakes["Name"] != ErrRequired {
124+
if errors["Name"] != ErrRequired {
125125
t.Fail()
126126
}
127127

128-
if mistakes["Home.Street"] != ErrRequired {
128+
if errors["Home.Street"] != ErrRequired {
129129
t.Fail()
130130
}
131131
}

cidr_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
func ExampleIsCidr() {
1515
err := checker.IsCidr("2001:db8::/32")
1616
if err != nil {
17-
// Send the mistakes back to the user
17+
// Send the errors back to the user
1818
}
1919
}
2020

0 commit comments

Comments
 (0)