summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/journal.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal.rs b/src/journal.rs
index 44d632f..f6f3e61 100644
--- a/src/journal.rs
+++ b/src/journal.rs
@@ -234,7 +234,7 @@ fn is_dir(path: &Path) -> bool {
}
fn topic_path(dirname: &Path, topic: &Path) -> PathBuf {
- dirname.join(&format!("{}.mdwn", topic.display()))
+ dirname.join(format!("{}.mdwn", topic.display()))
}
fn current_timestamp() -> String {