aboutsummaryrefslogtreecommitdiffstats
path: root/lem
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-04-17 10:26:14 +0100
committerMatthew Lemon <y@yulqen.org>2023-04-17 10:26:14 +0100
commit7e91a5284e5f83e0ffefb52ba4bb4bb30b497b37 (patch)
tree3d0bd4c7d9f9d9ab3b59b0f4e648f5fc7a3be26a /lem
parent70fddf193d8a78e4235d206d8f9386c91b6aa23d (diff)
Fixes issue of trailing comma in title
Diffstat (limited to '')
-rwxr-xr-xlem2
1 files changed, 1 insertions, 1 deletions
diff --git a/lem b/lem
index 90ed0fe..9bd1586 100755
--- a/lem
+++ b/lem
@@ -17,6 +17,6 @@ fi
STAMP="$(date +%G%m%d%H%M%S)"
F_PATH="$TARGET_DIR/$STAMP-$msg.md"
-printf "# %s", "$msg" >> "$F_PATH"
+printf "# %s" "$msg" >> "$F_PATH"
$VIM "$F_PATH"