diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-08-02 17:01:16 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-08-02 17:01:16 +0200 |
commit | 7aedd8ac344ac6d99df51f3c06862ed2cb4f6d52 (patch) | |
tree | 9839db391afdc0758874b46e005ef07dc8c7df95 /cmd | |
parent | b3aea1fb18d5346a51220d4caf220adc6e8fde90 (diff) |
Simplify code
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/exttmpl/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/exttmpl/main.go b/cmd/exttmpl/main.go index d5d929b..4b3ef6d 100644 --- a/cmd/exttmpl/main.go +++ b/cmd/exttmpl/main.go @@ -45,8 +45,8 @@ var ( currentFile []byte currentPath string lastComment string - translations map[translation]transinfo = make(map[translation]transinfo) - configs = map[string]config{ + translations = make(map[translation]transinfo) + configs = map[string]config{ "Get": {1, -1, -1, -1}, "GetC": {1, -1, 2, -1}, "GetD": {2, -1, -1, 1}, |