From c5ba3c0513fe491593766bea921acf1cf9a80570 Mon Sep 17 00:00:00 2001 From: Joshua Krusell Date: Sun, 31 Aug 2025 12:14:51 +0200 Subject: [PATCH] Small spelling fixes --- src/boot/boot.janet | 2 +- src/core/filewatch.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index ceb0b937..61d70871 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -4638,7 +4638,7 @@ --reinstall (-B) name : Reinstall a bundle by bundle name --uninstall (-u) name : Uninstall a bundle by bundle name --update-all (-U) : Reinstall all installed bundles - --prune (-P) : Uninstalled all bundles that are orphaned + --prune (-P) : Uninstall all bundles that are orphaned --list (-L) : List all installed bundles -- : Stop handling options ```) diff --git a/src/core/filewatch.c b/src/core/filewatch.c index 7f719400..104ac832 100644 --- a/src/core/filewatch.c +++ b/src/core/filewatch.c @@ -633,7 +633,7 @@ JANET_CORE_FN(cfun_filewatch_add, "* `:modified`\n\n" "* `:renamed-old`\n\n" "* `:renamed-new`\n\n" - "On Linux, events will a `:type` corresponding to the possible flags, excluding `:all`.\n" + "On Linux, events will have a `:type` corresponding to the possible flags, excluding `:all`.\n" "") { janet_arity(argc, 2, -1); JanetWatcher *watcher = janet_getabstract(argv, 0, &janet_filewatch_at);