fix ? expansion in comment

This commit is contained in:
Jorge Aparicio 2016-03-26 12:10:05 -05:00
parent 346d0d5175
commit a440c4a10c
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
//
// match expr {
// Ok(val) => val,
// Err(err) => return From::from(err),
// Err(err) => return Err(From::from(err)),
// }
//
// This test verifies that the expansion is hygienic, i.e. it's not affected by other `val` and