diff options
Diffstat (limited to 'src/libstd/macros.rs')
| -rw-r--r-- | src/libstd/macros.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index b04ca63e55e..4ae3d453f03 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -19,9 +19,9 @@ /// The entry point for failure of rust tasks. /// /// This macro is used to inject failure into a rust task, causing the task to -/// unwind and fail entirely. Each task's failure can be reaped as the `~Any` -/// type, and the single-argument form of the `fail!` macro will be the value -/// which is transmitted. +/// unwind and fail entirely. Each task's failure can be reaped as the +/// `Box<Any>` type, and the single-argument form of the `fail!` macro will be +/// the value which is transmitted. /// /// The multi-argument form of this macro fails with a string and has the /// `format!` syntax for building a string. |
