From 860b4ebbfca948840cafd574f0bb155054964684 Mon Sep 17 00:00:00 2001 From: Ryan F <65836248+public-void-ryan@users.noreply.github.com> Date: Sat, 10 Feb 2024 20:49:07 -0600 Subject: [PATCH] typos --- static/larbs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/larbs.sh b/static/larbs.sh index a4eae719e..59193168b 100755 --- a/static/larbs.sh +++ b/static/larbs.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Luke's Auto Rice Boostrapping Script (LARBS) +# Luke's Auto Rice Bootstrapping Script (LARBS) # by Luke Smith # License: GNU GPLv3 @@ -34,7 +34,7 @@ welcomemsg() { } getuserandpass() { - # Prompts user for new username an password. + # Prompts user for new username and password. name=$(whiptail --inputbox "First, please enter a name for the user account." 10 60 3>&1 1>&2 2>&3 3>&1) || exit 1 while ! echo "$name" | grep -q "^[a-z_][a-z0-9_-]*$"; do name=$(whiptail --nocancel --inputbox "Username not valid. Give a username beginning with a letter, with only lowercase letters, - or _." 10 60 3>&1 1>&2 2>&3 3>&1)