Merge pull request from calebcartwright/another-subtree-sync

sync subtree
This commit is contained in:
Caleb Cartwright 2021-10-24 14:56:55 -05:00 committed by GitHub
commit 50369f5bc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions
src
tests/cargo-fmt/source/workspaces/path-dep-above/e

@ -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() {

@ -4,3 +4,5 @@ version = "0.1.0"
edition = "2018"
[dependencies]
c = { path = "../ws/c" }
[workspace]