We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ec42ac commit e5baf5dCopy full SHA for e5baf5d
proc_macro/src/lib.rs
@@ -432,8 +432,8 @@ pub struct LineColumn {
432
/// The 1-indexed line in the source file on which the span starts or ends (inclusive).
433
#[unstable(feature = "proc_macro_span", issue = "54725")]
434
pub line: usize,
435
- /// The 1-indexed column (in UTF-8 characters) in the source file on which
436
- /// the span starts or ends (inclusive).
+ /// The 1-indexed column (number of bytes in UTF-8 encoding) in the source
+ /// file on which the span starts or ends (inclusive).
437
438
pub column: usize,
439
}
0 commit comments