From 22ed890abcbfebe04ec16fec2798278d821e66a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?angel=C2=BF?= <155915830+NopAngel@users.noreply.github.com> Date: Fri, 12 Jun 2026 16:53:05 -0400 Subject: [PATCH] fix: correct spelling of 'least' in disk space warning Corrected a minor typo in the `check_disk_space()` function's error message, changing "at lest" to "at least" for clearer console output. Note for maintainers: I also noticed a small typo in the `freebsd_version()` comments where "RxLEASE" is written instead of "RELEASE". I didn't include the fix in this commit to keep the scope tight, but wanted to point it out. --- pkgbasify.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgbasify.lua b/pkgbasify.lua index 95abcf1..5cbbf85 100755 --- a/pkgbasify.lua +++ b/pkgbasify.lua @@ -531,7 +531,7 @@ local function check_disk_space() else print([[ Less than 5GiB space available on the root filesystem. -It is recommended to have at lest 5GiB available before conversion as pkg does +It is recommended to have at least 5GiB available before conversion as pkg does not detect and handle insufficient space gracefully during installation. ]]) return prompt_yn("Continue despite possibly insufficient disk space?")