From 3aad5a39eaf66e40abac5f8fdb720fdbe65eb754 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Tue, 21 Jan 2025 09:40:00 +0300 Subject: Fix two comments --- src/layer/mod.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/layer/mod.rs b/src/layer/mod.rs index 4d4d7819..72e804d5 100644 --- a/src/layer/mod.rs +++ b/src/layer/mod.rs @@ -8,9 +8,10 @@ pub use mapped::MappedLayer; /// Rules fully resolved for a layer-shell surface. #[derive(Debug, PartialEq)] pub struct ResolvedLayerRules { - /// Extra opacity to draw this window with. + /// Extra opacity to draw this layer surface with. pub opacity: Option, - /// Whether to block out this window from certain render targets. + + /// Whether to block out this layer surface from certain render targets. pub block_out_from: Option, } -- cgit