@@ -37,9 +37,9 @@ type Person struct {
37
37
38
38
person := &Person{}
39
39
40
- mistakes , valid := checker.Check (person)
40
+ errors , valid := checker.Check (person)
41
41
if !valid {
42
- // Send the mistakes back to the user
42
+ // Send the errors back to the user
43
43
}
44
44
```
45
45
@@ -333,7 +333,7 @@ import (
333
333
func main() {
334
334
err := checker.IsASCII (" Checker" )
335
335
if err != nil {
336
- // Send the mistakes back to the user
336
+ // Send the errors back to the user
337
337
}
338
338
}
339
339
```
@@ -365,7 +365,7 @@ import (
365
365
func main() {
366
366
err := checker.IsAlphanumeric (" ABcd1234" )
367
367
if err != nil {
368
- // Send the mistakes back to the user
368
+ // Send the errors back to the user
369
369
}
370
370
}
371
371
```
@@ -398,7 +398,7 @@ func main() {
398
398
err := checker.IsAmexCreditCard (" 378282246310005" )
399
399
400
400
if err != nil {
401
- // Send the mistakes back to the user
401
+ // Send the errors back to the user
402
402
}
403
403
}
404
404
```
@@ -431,7 +431,7 @@ func main() {
431
431
err := checker.IsAnyCreditCard (" 6011111111111117" )
432
432
433
433
if err != nil {
434
- // Send the mistakes back to the user
434
+ // Send the errors back to the user
435
435
}
436
436
}
437
437
```
@@ -463,7 +463,7 @@ import (
463
463
func main() {
464
464
err := checker.IsCidr (" 2001:db8::/32" )
465
465
if err != nil {
466
- // Send the mistakes back to the user
466
+ // Send the errors back to the user
467
467
}
468
468
}
469
469
```
@@ -495,7 +495,7 @@ import (
495
495
func main() {
496
496
err := checker.IsDigits (" 1234" )
497
497
if err != nil {
498
- // Send the mistakes back to the user
498
+ // Send the errors back to the user
499
499
}
500
500
}
501
501
```
@@ -528,7 +528,7 @@ func main() {
528
528
err := checker.IsDinersCreditCard (" 36227206271667" )
529
529
530
530
if err != nil {
531
- // Send the mistakes back to the user
531
+ // Send the errors back to the user
532
532
}
533
533
}
534
534
```
@@ -561,7 +561,7 @@ func main() {
561
561
err := checker.IsDiscoverCreditCard (" 6011111111111117" )
562
562
563
563
if err != nil {
564
- // Send the mistakes back to the user
564
+ // Send the errors back to the user
565
565
}
566
566
}
567
567
```
@@ -593,7 +593,7 @@ import (
593
593
func main() {
594
594
err := checker.
IsEmail (
" [email protected] " )
595
595
if err != nil {
596
- // Send the mistakes back to the user
596
+ // Send the errors back to the user
597
597
}
598
598
}
599
599
```
@@ -625,7 +625,7 @@ import (
625
625
func main() {
626
626
err := checker.IsFqdn (" zdo.com" )
627
627
if err != nil {
628
- // Send the mistakes back to the user
628
+ // Send the errors back to the user
629
629
}
630
630
}
631
631
```
@@ -657,7 +657,7 @@ import (
657
657
func main() {
658
658
err := checker.IsIP (" 2001:db8::68" )
659
659
if err != nil {
660
- // Send the mistakes back to the user
660
+ // Send the errors back to the user
661
661
}
662
662
}
663
663
```
@@ -689,7 +689,7 @@ import (
689
689
func main() {
690
690
err := checker.IsIPV4 (" 192.168.1.1" )
691
691
if err != nil {
692
- // Send the mistakes back to the user
692
+ // Send the errors back to the user
693
693
}
694
694
}
695
695
```
@@ -722,7 +722,7 @@ func main() {
722
722
err := checker.IsIPV6 (" 2001:db8::68" )
723
723
724
724
if err != nil {
725
- // Send the mistakes back to the user
725
+ // Send the errors back to the user
726
726
}
727
727
}
728
728
```
@@ -754,7 +754,7 @@ import (
754
754
func main() {
755
755
err := checker.IsISBN (" 1430248270" )
756
756
if err != nil {
757
- // Send the mistakes back to the user
757
+ // Send the errors back to the user
758
758
}
759
759
}
760
760
```
@@ -786,7 +786,7 @@ import (
786
786
func main() {
787
787
err := checker.IsISBN10 (" 1430248270" )
788
788
if err != nil {
789
- // Send the mistakes back to the user
789
+ // Send the errors back to the user
790
790
}
791
791
}
792
792
```
@@ -818,7 +818,7 @@ import (
818
818
func main() {
819
819
err := checker.IsISBN13 (" 9781430248279" )
820
820
if err != nil {
821
- // Send the mistakes back to the user
821
+ // Send the errors back to the user
822
822
}
823
823
}
824
824
```
@@ -851,7 +851,7 @@ func main() {
851
851
err := checker.IsJcbCreditCard (" 3530111333300000" )
852
852
853
853
if err != nil {
854
- // Send the mistakes back to the user
854
+ // Send the errors back to the user
855
855
}
856
856
}
857
857
```
@@ -883,7 +883,7 @@ import (
883
883
func main() {
884
884
err := checker.IsLuhn (" 4012888888881881" )
885
885
if err != nil {
886
- // Send the mistakes back to the user
886
+ // Send the errors back to the user
887
887
}
888
888
}
889
889
```
@@ -915,7 +915,7 @@ import (
915
915
func main() {
916
916
err := checker.IsMac (" 00:00:5e:00:53:01" )
917
917
if err != nil {
918
- // Send the mistakes back to the user
918
+ // Send the errors back to the user
919
919
}
920
920
}
921
921
```
@@ -948,7 +948,7 @@ func main() {
948
948
err := checker.IsMasterCardCreditCard (" 5555555555554444" )
949
949
950
950
if err != nil {
951
- // Send the mistakes back to the user
951
+ // Send the errors back to the user
952
952
}
953
953
}
954
954
```
@@ -982,7 +982,7 @@ func main() {
982
982
983
983
err := checker.IsMax (quantity, 10 )
984
984
if err != nil {
985
- // Send the mistakes back to the user
985
+ // Send the errors back to the user
986
986
}
987
987
}
988
988
```
@@ -1016,7 +1016,7 @@ func main() {
1016
1016
1017
1017
err := checker.IsMaxLength (s, 4 )
1018
1018
if err != nil {
1019
- // Send the mistakes back to the user
1019
+ // Send the errors back to the user
1020
1020
}
1021
1021
}
1022
1022
```
@@ -1050,7 +1050,7 @@ func main() {
1050
1050
1051
1051
err := checker.IsMin (age, 21 )
1052
1052
if err != nil {
1053
- // Send the mistakes back to the user
1053
+ // Send the errors back to the user
1054
1054
}
1055
1055
}
1056
1056
```
@@ -1084,7 +1084,7 @@ func main() {
1084
1084
1085
1085
err := checker.IsMinLength (s, 4 )
1086
1086
if err != nil {
1087
- // Send the mistakes back to the user
1087
+ // Send the errors back to the user
1088
1088
}
1089
1089
}
1090
1090
```
@@ -1150,7 +1150,7 @@ import (
1150
1150
func main() {
1151
1151
err := checker.IsURL (" https://zdo.com" )
1152
1152
if err != nil {
1153
- // Send the mistakes back to the user
1153
+ // Send the errors back to the user
1154
1154
}
1155
1155
}
1156
1156
```
@@ -1183,7 +1183,7 @@ func main() {
1183
1183
err := checker.IsUnionPayCreditCard (" 6200000000000005" )
1184
1184
1185
1185
if err != nil {
1186
- // Send the mistakes back to the user
1186
+ // Send the errors back to the user
1187
1187
}
1188
1188
}
1189
1189
```
@@ -1216,7 +1216,7 @@ func main() {
1216
1216
err := checker.IsVisaCreditCard (" 4111111111111111" )
1217
1217
1218
1218
if err != nil {
1219
- // Send the mistakes back to the user
1219
+ // Send the errors back to the user
1220
1220
}
1221
1221
}
1222
1222
```
0 commit comments