From f63427c865905d0e2e7c689f0d7a37e33f9a5bbd Mon Sep 17 00:00:00 2001 From: cryo Date: Sun, 7 Sep 2025 15:53:49 +0000 Subject: [PATCH] chore: Normalize comment punctuation to use English period Signed-off-by: cryo --- src/semantic-router/pkg/utils/classification/classifier.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/semantic-router/pkg/utils/classification/classifier.go b/src/semantic-router/pkg/utils/classification/classifier.go index e288cac2..c0eb7d0e 100644 --- a/src/semantic-router/pkg/utils/classification/classifier.go +++ b/src/semantic-router/pkg/utils/classification/classifier.go @@ -497,7 +497,7 @@ func (c *Classifier) SelectBestModelForCategory(categoryName string) string { return bestModel } -// forEachModelScore traverses the ModelScores document of the category and executes the callback for each element。 +// forEachModelScore traverses the ModelScores document of the category and executes the callback for each element. func (c *Classifier) forEachModelScore(cat *config.Category, fn func(modelScore config.ModelScore)) { for _, modelScore := range cat.ModelScores { fn(modelScore)