From d6651cd25cbd88d271462d5b6ac7182a53a44dd8 Mon Sep 17 00:00:00 2001 From: Martin Bruse Date: Sat, 20 Apr 2024 18:39:58 +0000 Subject: [PATCH] Fixed a typo. --- go/bin/score/score.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/bin/score/score.go b/go/bin/score/score.go index 47b3bed..5576570 100644 --- a/go/bin/score/score.go +++ b/go/bin/score/score.go @@ -37,7 +37,7 @@ func main() { details := flag.String("details", "", "Path to database directory with a study to show the details from.") calculate := flag.String("calculate", "", "Path to a database directory with a study to calculate metrics for.") calculateZimtohrli := flag.Bool("calculate_zimtohrli", true, "Whether to calculate Zimtohrli scores.") - zimtohrliFrequencyResolution := flag.Float64("zimtohrli_frequency_resolution", 8.0, "Smallest bandwidth of of the filterbank.") + zimtohrliFrequencyResolution := flag.Float64("zimtohrli_frequency_resolution", 8.0, "Smallest bandwidth of the filterbank.") correlate := flag.String("correlate", "", "Path to a database directory with a study to correlate scores for.") workers := flag.Int("workers", runtime.NumCPU(), "Number of concurrent workers for tasks.") flag.Parse()