Fix Machine links

This commit is contained in:
bakaq
2024-09-29 23:53:37 -03:00
parent cab61738ad
commit 79fbd9e90f

View 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,