]> Repositorios git - scryer-prolog.git/commitdiff
Fix Machine links
authorbakaq <[email protected]>
Mon, 30 Sep 2024 02:53:37 +0000 (23:53 -0300)
committerbakaq <[email protected]>
Sun, 8 Dec 2024 23:18:06 +0000 (20:18 -0300)
src/machine/config.rs

index b968e62496cd2d4cc191b29cdc4f8783878268d9..ec930464f251457ccd365b4d800f27b59e4adc51 100644 (file)
@@ -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,