Skip to content

Commit 68347ec

Browse files
authored
Merge pull request #366 from stephen-obashitech/master
Fix typo in UnmarshalFromString documentation
2 parents 1bc9828 + 0fd9146 commit 68347ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adapter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ func Unmarshal(data []byte, v interface{}) error {
1616
return ConfigDefault.Unmarshal(data, v)
1717
}
1818

19-
// UnmarshalFromString convenient method to read from string instead of []byte
19+
// UnmarshalFromString is a convenient method to read from string instead of []byte
2020
func UnmarshalFromString(str string, v interface{}) error {
2121
return ConfigDefault.UnmarshalFromString(str, v)
2222
}

0 commit comments

Comments
 (0)