File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -100,8 +100,8 @@ func (e *ParseError) Error() string {
100
100
return e .Err .Error ()
101
101
}
102
102
103
- // ExtractCommaSeperatedValues will extract the values matching the key.
104
- func ExtractCommaSeperatedValues (source , prefix string ) []string {
103
+ // ExtractCommaSeparatedValues will extract the values matching the key.
104
+ func ExtractCommaSeparatedValues (source , prefix string ) []string {
105
105
parts := strings .Split (source , "," )
106
106
values := make ([]string , 0 )
107
107
for _ , part := range parts {
@@ -117,7 +117,7 @@ func ExtractSignatures(signature, prefix string) []string {
117
117
// If there are multiple possible matches, let the comma seperated extractor
118
118
// do it's work.
119
119
if strings .Contains (signature , "," ) {
120
- return ExtractCommaSeperatedValues (signature , prefix )
120
+ return ExtractCommaSeparatedValues (signature , prefix )
121
121
}
122
122
123
123
// There were no commas, so just trim the prefix (if it even exists) and
You can’t perform that action at this time.
0 commit comments