Commit a3155bdb authored by Russ Cox's avatar Russ Cox

remove implicit int -> string

R=ken
OCL=21020
CL=21020
parent bf67afc8
......@@ -131,7 +131,7 @@ func (j *Map) String() string {
export func Walk(j Json, path string) Json {
for len(path) > 0 {
var elem string;
if i := strings.index(path, '/'); i >= 0 {
if i := strings.index(path, "/"); i >= 0 {
elem = path[0:i];
path = path[i+1:len(path)];
} else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment