Skip to content

Commit

Permalink
fix: Fix error message formatting Update common.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
ursulabauer authored Jan 12, 2025
1 parent fe40733 commit 8ab3260
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lang/syn/src/idl/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub fn find_path(name: &str, path: impl AsRef<Path>) -> Result<PathBuf> {
}
}

Err(anyhow!("Path ({path:?}) not found"))
Err(anyhow!("Path ({:?}) not found", path))
}

pub fn get_no_docs() -> bool {
Expand Down

0 comments on commit 8ab3260

Please sign in to comment.