aboutsummaryrefslogtreecommitdiff
path: root/crates/tools/src/lib.rs
diff options
context:
space:
mode:
authorMuhammad Mominul Huque <[email protected]>2018-10-16 10:36:53 +0100
committerMuhammad Mominul Huque <[email protected]>2018-10-16 10:36:53 +0100
commit2c4cfb297ec59625310023796b65e3dd48f1e76a (patch)
treee6d6e34aba7d37f6d3c0e1056838e073aa185881 /crates/tools/src/lib.rs
parent9d9e637ef39cbc00eaebad93294a60ccfd3405eb (diff)
take `&Path` instead of `PathBuf`
Diffstat (limited to 'crates/tools/src/lib.rs')
-rw-r--r--crates/tools/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/tools/src/lib.rs b/crates/tools/src/lib.rs
index 548b157dd..9a1b12a16 100644
--- a/crates/tools/src/lib.rs
+++ b/crates/tools/src/lib.rs
@@ -77,7 +77,7 @@ pub fn update(path: &Path, contents: &str, verify: bool) -> Result<()> {
77 Ok(()) 77 Ok(())
78} 78}
79 79
80pub fn render_template(template: PathBuf) -> Result<String> { 80pub fn render_template(template: &Path) -> Result<String> {
81 let grammar: ron::value::Value = { 81 let grammar: ron::value::Value = {
82 let text = fs::read_to_string(project_root().join(GRAMMAR))?; 82 let text = fs::read_to_string(project_root().join(GRAMMAR))?;
83 ron::de::from_str(&text)? 83 ron::de::from_str(&text)?