From 943b534c2a1d7d6ed0861fb8e7b100e470b633fe Mon Sep 17 00:00:00 2001 From: Walther Date: Sun, 22 Dec 2024 02:09:08 +0200 Subject: [PATCH] chore: fix cargo doc lint warn --- clovers/src/objects/constant_medium.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clovers/src/objects/constant_medium.rs b/clovers/src/objects/constant_medium.rs index 3de93047..fa3da9ff 100644 --- a/clovers/src/objects/constant_medium.rs +++ b/clovers/src/objects/constant_medium.rs @@ -1,4 +1,4 @@ -//! `ConstantMedium` object. This should probably be a [Material] at some point, but this will do for now. This is essentially a fog with a known size, shape and density. +//! `ConstantMedium` object. This should probably be a Material at some point, but this will do for now. This is essentially a fog with a known size, shape and density. use crate::{ aabb::AABB, @@ -41,7 +41,7 @@ fn default_density() -> Float { } #[derive(Debug, Clone)] -/// `ConstantMedium` object. This should probably be a [Material] at some point, but this will do for now. This is essentially a fog with a known size, shape and density. +/// `ConstantMedium` object. This should probably be a Material at some point, but this will do for now. This is essentially a fog with a known size, shape and density. pub struct ConstantMedium<'scene> { boundary: Box>, phase_function: Kind,