From: bakaq Date: Mon, 30 Sep 2024 02:53:37 +0000 (-0300) Subject: Fix Machine links X-Git-Tag: v0.10.0~92^2~14 X-Git-Url: https://git.sagredo.dev/?a=commitdiff_plain;h=79fbd9e90f531a7e73c1cf4fc5f85e945638373c;p=scryer-prolog.git Fix Machine links --- 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,