From 3e14fe7c2115a71ac46bca50443c12c4be516efc Mon Sep 17 00:00:00 2001 From: Alan Wu Date: Fri, 28 Jun 2024 13:44:35 -0400 Subject: YJIT: Fix `cargo doc --document-private-items` warnings [ci skip] Mostly putting angle brackets around links to follow markdown syntax. --- yjit/src/codegen.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'yjit/src/codegen.rs') diff --git a/yjit/src/codegen.rs b/yjit/src/codegen.rs index 746959279b..d456803931 100644 --- a/yjit/src/codegen.rs +++ b/yjit/src/codegen.rs @@ -41,7 +41,7 @@ type InsnGenFn = fn( ) -> Option; /// Ephemeral code generation state. -/// Represents a [core::Block] while we build it. +/// Represents a [crate::core::Block] while we build it. pub struct JITState<'a> { /// Instruction sequence for the compiling block pub iseq: IseqPtr, @@ -1001,7 +1001,7 @@ pub fn gen_entry_chain_guard( /// Compile an interpreter entry block to be inserted into an iseq /// Returns None if compilation fails. /// If jit_exception is true, compile JIT code for handling exceptions. -/// See [jit_compile_exception] for details. +/// See jit_compile_exception() for details. pub fn gen_entry_prologue( cb: &mut CodeBlock, ocb: &mut OutlinedCb, -- cgit v1.2.3