diff options
| author | John Clements <clements@racket-lang.org> | 2013-07-28 16:34:19 -0400 |
|---|---|---|
| committer | John Clements <clements@racket-lang.org> | 2013-09-06 13:35:14 -0700 |
| commit | 4664d3320dacb1cbf42081369d3fc4f61f2af1a3 (patch) | |
| tree | b7c1624495ec8291ba721832f8adf58fded40e1e | |
| parent | 114b1a7e97610501f1bf028eac058d388d816c11 (diff) | |
| download | rust-4664d3320dacb1cbf42081369d3fc4f61f2af1a3.tar.gz rust-4664d3320dacb1cbf42081369d3fc4f61f2af1a3.zip | |
comment fix
| -rw-r--r-- | src/libsyntax/fold.rs | 2 |
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 |
