Fix docs for column/line

Fixes #26424
This commit is contained in:
Steve Klabnik 2015-06-19 11:22:37 -04:00
parent 2f5683913c
commit 1620acf3ad

View File

@ -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.
///