]> git.lizzy.rs Git - rust.git/commitdiff
comment fix
authorJohn Clements <clements@racket-lang.org>
Sun, 28 Jul 2013 20:34:19 +0000 (16:34 -0400)
committerJohn Clements <clements@racket-lang.org>
Fri, 6 Sep 2013 20:35:14 +0000 (13:35 -0700)
src/libsyntax/fold.rs

index b805d55830f125ab6c1c46181ae70da735e27df8..aad992706fd01271e86209eb6f4a77962d3b20f1 100644 (file)
@@ -475,7 +475,7 @@ fn noop_fold_decl(d: &Decl_, fld: @ast_fold) -> Option<Decl_> {
 }
 
 // lift a function in ast-thingy X fold -> ast-thingy to a function
-// in (ast-thingy X span X fold) -> (ast-thingy X fold). Basically,
+// in (ast-thingy X span X fold) -> (ast-thingy X span). Basically,
 // carries the span around.
 // It seems strange to me that the call to new_fold doesn't happen
 // here but instead in the impl down below.... probably just an