From e1c58f38d929d6d6d4c51f6a4d119177af355232 Mon Sep 17 00:00:00 2001 From: Guangwen Feng Date: Thu, 2 Jan 2020 15:47:13 +0800 Subject: [PATCH] fix typo: 'the the' -> 'the' Signed-off-by: Guangwen Feng --- dfget/config/supernode_value.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dfget/config/supernode_value.go b/dfget/config/supernode_value.go index 3b2970a30..f5de545ff 100644 --- a/dfget/config/supernode_value.go +++ b/dfget/config/supernode_value.go @@ -146,7 +146,7 @@ func ParseNodesSlice(value []string) ([]*NodeWight, error) { } var result []*NodeWight - // get the the greatest common divisor of the weight slice and + // get the greatest common divisor of the weight slice and // divide all weights by the greatest common divisor. gcdNumber := algorithm.GCDSlice(weightKey) for _, v := range nodeWightSlice {