about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/libsyntax/fold.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/fold.rs b/src/libsyntax/fold.rs
index b805d55830f..aad992706fd 100644
--- a/src/libsyntax/fold.rs
+++ b/src/libsyntax/fold.rs
@@ -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