From 79fbd9e90f531a7e73c1cf4fc5f85e945638373c Mon Sep 17 00:00:00 2001 From: bakaq Date: Sun, 29 Sep 2024 23:53:37 -0300 Subject: [PATCH] Fix Machine links --- src/machine/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/machine/config.rs b/src/machine/config.rs index b968e624..ec930464 100644 --- a/src/machine/config.rs +++ b/src/machine/config.rs @@ -1,4 +1,4 @@ -/// Describes how the streams of a `crate::Machine` will be handled. +/// Describes how the streams of a [`Machine`](crate::Machine) will be handled. /// /// Defaults to using standard IO. pub struct StreamConfig { @@ -34,7 +34,7 @@ pub(crate) enum StreamConfigInner { Memory, } -/// Describes how a `crate::Machine` will be configured. +/// Describes how a [`Machine`](crate::Machine) will be configured. pub struct MachineConfig { pub(crate) streams: StreamConfig, pub(crate) toplevel: &'static str, -- 2.54.0