Skip to content

Commit 332b16d

Browse files
committed
Changed function comment to match codebase
1 parent 3559f20 commit 332b16d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

utils/utils.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ package utils
22

33
import "strings"
44

5-
/*
6-
Redact masks the given token by replacing part of the string with *
7-
*/
5+
// Redact masks the given token by replacing part of the string with *
86
func Redact(token string) string {
97
str := token[4 : len(token)-3]
108
redaction := strings.Repeat("*", len(str))

0 commit comments

Comments
 (0)