Remove unnecesary lifetime

This commit is contained in:
Mario Carbajal 2024-01-05 22:43:06 -03:00
parent 2c24125d8e
commit a1e0b82a1e
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ pub enum CssFragment<'s> {
Global(Global<'s>),
}
pub fn parse_css<'s>(input: &str) -> Result<Vec<CssFragment>, ParseError<&str, ContextError>> {
pub fn parse_css(input: &str) -> Result<Vec<CssFragment>, ParseError<&str, ContextError>> {
style_rule_list.parse(input)
}