diff --git a/src/gmnlm.c b/src/gmnlm.c
index 45c7cee3d98f60ea42a6c58f1f56e0c810e19f47..ce5782ba127dff3adcd4da8fee69e74fe34c3a8d 100644
--- a/src/gmnlm.c
+++ b/src/gmnlm.c
@@ -102,7 +102,7 @@ "s\t\tSearch via geminispace.info\n"
"l\t\tSearch backlinks to current URI via geminispace.info\n"
"/<text>\t\tSearch for text (POSIX regular expression)\n"
"n\t\tJump to next search match\n"
- "d <path>\tDownload page to <path>\n"
+ "d [path>\tDownload page to path\n"
"|<prog>\t\tPipe page into program\n"
"[N]|<prog>\tPipe content of Nth link into program\n"
"a\t\tToggle usage of alt text instead of preformatted text\n"
@@ -1180,7 +1180,7 @@ }
if (strncmp(resp->meta, "text/", 5) == 0) {
return display_plaintext(browser, resp);
}
- fprintf(stderr, "Media type %s is unsupported, use \"d <path>\" to download this page\n",
+ fprintf(stderr, "Media type %s is unsupported, use \"d [path]\" to download this page\n",
resp->meta);
return false;
}