Skip to content

Commit 1e5f8d1

Browse files
committed
lint(markdown_to_docs): remove unnecessary reference
1 parent 98b6f65 commit 1e5f8d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • crates/markdown_to_docs/src

crates/markdown_to_docs/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use regex::Regex;
66
pub fn include(input: TokenStream) -> TokenStream {
77
let input_str = input.to_string();
88

9-
let ghf_markdown = std::fs::read_to_string(&input_str.trim_matches('"')).unwrap();
9+
let ghf_markdown = std::fs::read_to_string(input_str.trim_matches('"')).unwrap();
1010

1111
let re = Regex::new(r"> \[!(CAUTION|IMPORTANT|NOTE|TIP|WARNING)\]").unwrap();
1212
let transformed_content = re

0 commit comments

Comments
 (0)