summaryrefslogtreecommitdiff
path: root/types.go
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2022-01-23 23:31:23 +0100
committerRené 'Necoro' Neumann <necoro@necoro.eu>2022-01-23 23:31:23 +0100
commitd3c998ed96adb070e5dfe38c5fac812d503c890a (patch)
treeee003d1a2e339c30e865990c39fa32cff3fb804d /types.go
parente69d46383fd29378f5d1b3a39f92a2a67a85f1f8 (diff)
downloadengarde-importer-d3c998ed96adb070e5dfe38c5fac812d503c890a.tar.gz
engarde-importer-d3c998ed96adb070e5dfe38c5fac812d503c890a.tar.bz2
engarde-importer-d3c998ed96adb070e5dfe38c5fac812d503c890a.zip
Enguarde -> Engarde
Diffstat (limited to 'types.go')
-rw-r--r--types.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/types.go b/types.go
index 82fd8e6..8c1538e 100644
--- a/types.go
+++ b/types.go
@@ -20,7 +20,7 @@ func (g Gender) String() string {
}
}
-func (g Gender) enguarde() (string, error) {
+func (g Gender) engarde() (string, error) {
switch g {
case GenderM:
return "masculin", nil
@@ -69,7 +69,7 @@ func (a AgeGroup) String() string {
}
}
-func (a AgeGroup) enguarde() (string, error) {
+func (a AgeGroup) engarde() (string, error) {
switch a {
case AgeVeteran:
return "veteran", nil
@@ -112,7 +112,7 @@ func (w Weapon) String() string {
}
}
-func (w Weapon) enguarde() (string, error) {
+func (w Weapon) engarde() (string, error) {
switch w {
case Epee:
return "epee", nil