From 70611a51c4bbf1f47d8f1da66a9443883996c9d8 Mon Sep 17 00:00:00 2001 From: stephenmk Date: Fri, 3 Feb 2023 15:51:52 -0600 Subject: [PATCH] Fix typo --- frequency.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frequency.go b/frequency.go index 310856c..3db7f4e 100644 --- a/frequency.go +++ b/frequency.go @@ -8,14 +8,14 @@ import ( ) func frequencyTermsExportDb(inputPath, outputPath, language, title string, stride int, pretty bool) error { - return frequncyExportDb(inputPath, outputPath, language, title, stride, pretty, "term_meta") + return frequencyExportDb(inputPath, outputPath, language, title, stride, pretty, "term_meta") } func frequencyKanjiExportDb(inputPath, outputPath, language, title string, stride int, pretty bool) error { - return frequncyExportDb(inputPath, outputPath, language, title, stride, pretty, "kanji_meta") + return frequencyExportDb(inputPath, outputPath, language, title, stride, pretty, "kanji_meta") } -func frequncyExportDb(inputPath, outputPath, language, title string, stride int, pretty bool, key string) error { +func frequencyExportDb(inputPath, outputPath, language, title string, stride int, pretty bool, key string) error { reader, err := os.Open(inputPath) if err != nil { return err