From 18542d338fd9abcaa8053446845c8d3fa3ee75e5 Mon Sep 17 00:00:00 2001 From: Dmitrii Shatokhin Date: Wed, 11 Dec 2024 15:09:04 +0100 Subject: [PATCH] chore: remove redundant docs --- src/core/css_generator.rs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/core/css_generator.rs b/src/core/css_generator.rs index f3268a4..efcedbc 100644 --- a/src/core/css_generator.rs +++ b/src/core/css_generator.rs @@ -452,20 +452,6 @@ impl<'a> CSSGenerator<'a> { Ok(None) } - /// Handles specific grimoire functions in the target string. - /// - /// # Arguments - /// - /// * `target` - A reference to the target string. - /// * `captures` - A vector of regex captures from the target string. - /// * `property` - A reference to the CSS property string. - /// * `css_class_name` - A reference to the CSS class name string. - /// - /// # Returns - /// - /// * `Ok(Some((String, String)))` containing the base and media query CSS strings if functions are handled. - /// * `Ok(None)` if no functions are found. - /// * `Err(GrimoireCSSError)` if there is an error during function handling. /// Handles specific grimoire functions in the target string. /// /// # Arguments