From a0758cdcffcd3810c6bc3eef06fa8193c6e10f28 Mon Sep 17 00:00:00 2001 From: Anthony Defranceschi Date: Fri, 9 Mar 2018 00:43:54 +0100 Subject: [PATCH] Modify part of `column!` documentation. Just like `line!` documentation, I've replaced: > The returned column is not the invocation of the `column!` macro itself By > The returned column is *not necessarily* the line of the `column!` invocation itself See #46997. --- src/libstd/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index a18c811d19634..9543540cb5b1f 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -497,7 +497,7 @@ pub mod builtin { /// The expanded expression has type `u32` and is 1-based, so the first column /// in each line evaluates to 1, the second to 2, etc. This is consistent /// with error messages by common compilers or popular editors. - /// The returned column is not the invocation of the `column!` macro itself, + /// The returned column is *not necessarily* the line of the `column!` invocation itself, /// but rather the first macro invocation leading up to the invocation /// of the `column!` macro. ///