From 1620acf3ad635fbe9aabc62d8269bd90f0289a1b Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Fri, 19 Jun 2015 11:22:37 -0400 Subject: [PATCH] Fix docs for column/line Fixes #26424 --- src/libstd/macros.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. ///