diff options
author | Nathan Whitehorn <nwhitehorn@FreeBSD.org> | 2022-01-02 00:34:48 +0000 |
---|---|---|
committer | Nathan Whitehorn <nwhitehorn@FreeBSD.org> | 2022-01-02 00:34:48 +0000 |
commit | dfa5a74357f3837b93b0cc90e5bee0a1d298ca3e (patch) | |
tree | 60c1e15c811a54de28fb07dc802ec0217daaba5e | |
parent | e9016c0be83f9b1d9cf7c2460ee3b041967bb75f (diff) |
Fix grammatical issues.
-rwxr-xr-x | usr.sbin/bsdinstall/scripts/bootconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bsdinstall/scripts/bootconfig b/usr.sbin/bsdinstall/scripts/bootconfig index 8c0e87991248..2a418d786643 100755 --- a/usr.sbin/bsdinstall/scripts/bootconfig +++ b/usr.sbin/bsdinstall/scripts/bootconfig @@ -74,7 +74,7 @@ update_uefi_bootentry() fi $DIALOG --backtitle 'FreeBSD Installer' --title 'Boot configuration' \ - --yesno 'There is multiple "FreeBSD" efi boot entries, would you like to remove them all and add a new one?' 0 0 + --yesno 'There are multiple "FreeBSD" EFI boot entries. Would you like to remove them all and add a new one?' 0 0 if [ $? -eq $DIALOG_OK ]; then for entry in $(efibootmgr | awk '$NF == "FreeBSD" { sub(/.*Boot/,"", $1); sub(/\*/,"", $1); print $1 }'); do efibootmgr -B -b ${entry} |