diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2025-08-04 23:36:05 +0000 |
|---|---|---|
| committer | Camille Gillot <gillot.camille@gmail.com> | 2025-08-10 23:01:45 +0000 |
| commit | 6dcc8617d342d7e3a007c4e57e64ee06a07fb707 (patch) | |
| tree | a7b2bb2b9147bbb652d2459fc32fdd50c4ae140b /compiler/rustc_span/src/span_encoding.rs | |
| parent | 18eeac04fc5c2a4c4a8020dbdf1c652077ad0e4e (diff) | |
| download | rust-6dcc8617d342d7e3a007c4e57e64ee06a07fb707.tar.gz rust-6dcc8617d342d7e3a007c4e57e64ee06a07fb707.zip | |
Fix doc-comment.
Diffstat (limited to 'compiler/rustc_span/src/span_encoding.rs')
| -rw-r--r-- | compiler/rustc_span/src/span_encoding.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler/rustc_span/src/span_encoding.rs b/compiler/rustc_span/src/span_encoding.rs index a4a47dc99b0..e34efa784de 100644 --- a/compiler/rustc_span/src/span_encoding.rs +++ b/compiler/rustc_span/src/span_encoding.rs @@ -74,9 +74,8 @@ use crate::{BytePos, SPAN_TRACK, SpanData}; /// because `parent` isn't currently used by default. /// /// In order to reliably use parented spans in incremental compilation, -/// the dependency to the parent definition's span. This is performed -/// using the callback `SPAN_TRACK` to access the query engine. -/// +/// accesses to `lo` and `hi` must introduce a dependency to the parent definition's span. +/// This is performed using the callback `SPAN_TRACK` to access the query engine. #[derive(Clone, Copy, Eq, PartialEq, Hash)] #[rustc_pass_by_value] pub struct Span { |
