We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 599b2fd + 757da8c commit 50369f5Copy full SHA for 50369f5
src/comment.rs
@@ -403,7 +403,7 @@ enum CodeBlockAttribute {
403
impl CodeBlockAttribute {
404
/// Parse comma separated attributes list. Return rust only if all
405
/// attributes are valid rust attributes
406
- /// See https://doc.rust-lang.org/rustdoc/print.html#attributes
+ /// See <https://doc.rust-lang.org/rustdoc/print.html#attributes>
407
fn new(attributes: &str) -> CodeBlockAttribute {
408
for attribute in attributes.split(",") {
409
match attribute.trim() {
tests/cargo-fmt/source/workspaces/path-dep-above/e/Cargo.toml
@@ -4,3 +4,5 @@ version = "0.1.0"
4
edition = "2018"
5
[dependencies]
6
c = { path = "../ws/c" }
7
+
8
+[workspace]
0 commit comments