mirror of https://github.com/golang/go.git
re7
This commit is contained in:
parent
5faf71f624
commit
b8d436cdee
|
|
@ -94,7 +94,7 @@ func parsePattern(s string) (_ *pattern, err error) {
|
||||||
|
|
||||||
method, rest, found := s, "", false
|
method, rest, found := s, "", false
|
||||||
if i := strings.IndexAny(s, " \t"); i >= 0 {
|
if i := strings.IndexAny(s, " \t"); i >= 0 {
|
||||||
method, rest, found = s[:i], strings.Trim(s[i+1:], " \t"), true
|
method, rest, found = s[:i], strings.TrimLeft(s[i+1:], " \t"), true
|
||||||
}
|
}
|
||||||
if !found {
|
if !found {
|
||||||
rest = method
|
rest = method
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue