Skip to content

Commit

Permalink
Add space before date
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvNC committed Jul 24, 2024
1 parent b449151 commit d9dd1bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jmnedict.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func jmnedictExportDb(inputPath, outputPath, language, title string, stride int,
title = "JMnedict"
}
jmnedictDate := jmnedictPublicationDate(dictionary)
title = title + "[" + jmnedictDate + "]"
title = title + " [" + jmnedictDate + "]"

index := dbIndex{
Title: title,
Expand Down
2 changes: 1 addition & 1 deletion kanjidic.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func kanjidicExportDb(inputPath, outputPath, language, title string, stride int,
title = "KANJIDIC2"
}
kanjidicDate := dict.Header.DatabaseVersion
title = title + "[" + kanjidicDate + "]"
title = title + " [" + kanjidicDate + "]"

tags := dbTagList{
dbTag{Name: "jouyou", Notes: "included in list of regular-use characters", Category: "frequent", Order: -5},
Expand Down

0 comments on commit d9dd1bf

Please sign in to comment.