Skip to content

Commit 2376559

Browse files
committed
fix rustdoc
Signed-off-by: Adam Gutglick <adam@spiraldb.com>
1 parent 865ad1f commit 2376559

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

vortex-array/src/test_harness/trace.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//! # What this records
77
//!
88
//! [`trace_op`] runs a closure with a thread-local recorder installed. While the recorder is
9-
//! active, calls to the [`trace_op!`][crate::trace_op] macro inside the optimizer
9+
//! active, calls to the `trace_op!` macro inside the optimizer
1010
//! ([`optimizer`][crate::optimizer]) and executor ([`executor`][crate::executor]) push
1111
//! structured events into the recorder. The recorder produces a [`TraceDisplay`] that renders
1212
//! as a deterministic, hierarchical text trace suitable for `insta` snapshot assertions.
@@ -47,7 +47,7 @@
4747
//! - Nested captures return an error so that unrelated traces never merge.
4848
//! - In release builds and CodSpeed benchmark builds, every `trace_op!` invocation is compiled
4949
//! away by the macro's `cfg` gating; this module is then unused. See
50-
//! [`trace_op`][crate::trace_op] for the gating rules.
50+
//! `trace_op!` for the gating rules.
5151
//!
5252
//! # Example
5353
//!
@@ -189,8 +189,8 @@ fn write_indent(f: &mut fmt::Formatter<'_>, depth: usize) -> fmt::Result {
189189
///
190190
/// `f` typically invokes an operation that drives the executor or optimizer, such as
191191
/// [`ArrayOptimizer::optimize`][crate::optimizer::ArrayOptimizer::optimize] or
192-
/// [`VortexSessionExecute::execute`][crate::VortexSessionExecute::execute]. While `f` runs,
193-
/// the optimizer and executor emit structured events via the [`trace_op!`][crate::trace_op]
192+
/// [`ArrayRef::execute`][crate::ArrayRef::execute]. While `f` runs,
193+
/// the optimizer and executor emit structured events via the `trace_op!`
194194
/// macro into a thread-local recorder. When `f` returns, the recorder is finalized and
195195
/// returned alongside the closure's output as a [`Traced<T>`].
196196
///

0 commit comments

Comments
 (0)