docs(tvix/eval): fix some broken docstr references

There's some more left, but they've been renamed/refactored out of
sight.

Change-Id: I41579dedc74342b4c5f8cb39d2995b5b0c90b0f4
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9372
Tested-by: BuildkiteCI
Reviewed-by: Connor Brewster <cbrewster@hey.com>
Autosubmit: flokli <flokli@flokli.de>
This commit is contained in:
Florian Klink 2023-09-22 00:57:20 +03:00 committed by flokli
parent 37a348b4fa
commit 731996fbfe
5 changed files with 11 additions and 10 deletions

View file

@ -8,7 +8,7 @@ use crate::SourceCode;
/// Represents a source location from which one or more operations
/// were compiled.
///
/// The span itself is an index into a [codemap::Codemap], and the
/// The span itself is an index into a [codemap::CodeMap], and the
/// structure tracks the number of operations that were yielded from
/// the same span.
///
@ -18,7 +18,7 @@ use crate::SourceCode;
/// interesting errors.
#[derive(Clone, Debug, PartialEq)]
struct SourceSpan {
/// Span into the [codemap::Codemap].
/// Span into the [codemap::CodeMap].
span: codemap::Span,
/// Index of the first operation covered by this span.