diff options
-rw-r--r-- | src/crates/cli/src/place.rs | 2 | ||||
-rw-r--r-- | src/crates/primrose/src/library_specs.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/crates/cli/src/place.rs b/src/crates/cli/src/place.rs index 6bfff48..1e7899b 100644 --- a/src/crates/cli/src/place.rs +++ b/src/crates/cli/src/place.rs @@ -11,7 +11,7 @@ use crate::State; #[derive(FromArgs)] #[argh(subcommand, name = "place")] pub struct Args { - /// the assignments, written <file path> <type name> <implementation> ... + /// the assignments, written `<file path> <type name> <implementation>` ... #[argh(positional, greedy)] assignments: Vec<String>, } diff --git a/src/crates/primrose/src/library_specs.rs b/src/crates/primrose/src/library_specs.rs index c9f90bb..62b29de 100644 --- a/src/crates/primrose/src/library_specs.rs +++ b/src/crates/primrose/src/library_specs.rs @@ -106,8 +106,8 @@ impl LibSpec { Ok(spec) => Some((spec.struct_name.clone(), spec)), Err(e) => { debug!( - "Failed to process library module {}: {}. Continuing anyway.", - &path, e + "Failed to process library module {}. Continuing anyway.", + &path ); None } |