Skip to content

Commit 12701ec

Browse files
committed
refactor: use only a double quote for a single package import
1 parent 89e3a3f commit 12701ec

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

strings/hamming/hammingdistance.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ Output: distance between both strings */
1313

1414
package hamming
1515

16-
import (
17-
"errors"
18-
)
16+
import "errors"
1917

2018
func Distance(str1, str2 string) (int, error) {
2119
if len(str1) != len(str2) {

0 commit comments

Comments
 (0)