1
Fork 0

reorder args to the various vec, option fns so blk comes last

This commit is contained in:
Niko Matsakis 2011-12-16 06:27:50 -08:00
parent 0a3626161d
commit 2833ca478c
37 changed files with 170 additions and 169 deletions

View file

@ -50,7 +50,7 @@ fn to_str(j: json) -> str {
list(@js) {
str::concat(["[",
str::connect(
vec::map::<json,str>({ |e| to_str(e) }, js),
vec::map::<json,str>(js, { |e| to_str(e) }),
", "),
"]"])
}