diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index 749974c7afa..02c35e9526d 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -331,7 +331,7 @@ pub mod builtin { /// A macro which expands to the line number on which it was invoked. /// - /// The expanded expression has type `usize`, and the returned line is not + /// The expanded expression has type `u32`, and the returned line is not /// the invocation of the `line!()` macro itself, but rather the first macro /// invocation leading up to the invocation of the `line!()` macro. /// @@ -346,7 +346,7 @@ pub mod builtin { /// A macro which expands to the column number on which it was invoked. /// - /// The expanded expression has type `usize`, and the returned column is not + /// The expanded expression has type `u32`, and the returned column is not /// the invocation of the `column!()` macro itself, but rather the first macro /// invocation leading up to the invocation of the `column!()` macro. ///