fix doc issue in rustfmt

This commit is contained in:
Caleb Cartwright 2021-10-21 17:22:54 -05:00
parent 606c7d49db
commit 051e2b40c9

View File

@ -403,7 +403,7 @@ enum CodeBlockAttribute {
impl CodeBlockAttribute {
/// Parse comma separated attributes list. Return rust only if all
/// attributes are valid rust attributes
/// See https://doc.rust-lang.org/rustdoc/print.html#attributes
/// See <https://doc.rust-lang.org/rustdoc/print.html#attributes>
fn new(attributes: &str) -> CodeBlockAttribute {
for attribute in attributes.split(",") {
match attribute.trim() {