Skip to content

Commit 7a11a73

Browse files
author
Paul Pham
committed
Fix format
1 parent b46ce6c commit 7a11a73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parser.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ func (v *Value) GetFastString(key string) string {
914914
func (v *Value) GetFastStringFmt(key string, args ...interface{}) string {
915915
var keys []string = strings.Split(key, DefaultKeySplitSep)
916916
var format = b2s(v.GetStringBytes(keys...))
917-
return fmt.Sprintf(format, args)
917+
return fmt.Sprintf(format, args...)
918918
}
919919

920920
// GetAndReplaceFastString returns string value by the given key path.

0 commit comments

Comments
 (0)