Skip to content

Commit f4a737b

Browse files
committed
ref
1 parent b37e583 commit f4a737b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

parser/fns/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
)
1010

1111
// Example output:
12-
// var SupportedTaxDepartment = map[ConstitutionSubjectCode]TaxDepart{
12+
// var SupportedTaxDepartments = map[ConstitutionRegionCode]TaxDepart{
1313
// 0: {
1414
// Name: "ФНС России",
1515
// },
@@ -33,7 +33,7 @@ func main() {
3333
}()
3434

3535
fmt.Println("package main", "\n")
36-
fmt.Println("var SupportedTaxDepartment = map[ConstitutionSubjectCode]TaxDepart{")
36+
fmt.Println("var SupportedTaxDepartments = map[ConstitutionRegionCode]TaxDepart{")
3737

3838
scanner := bufio.NewScanner(file)
3939
var code int

parser/subjects/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func main() {
2424
checkErr(err)
2525

2626
var i int
27-
fmt.Println("var SupportedSubjectsCodes = map[ConstitutionSubjectCode]string{")
27+
fmt.Println("var SupportedRegionsCodes = map[ConstitutionRegionCode]string{")
2828
doc.Find(".doc-table").Each(func(_ int, s *goquery.Selection) {
2929
s.Find("td").Each(func(_ int, s *goquery.Selection) {
3030
if i%2 == 0 {

0 commit comments

Comments
 (0)