Date: Sun, 2 Jan 2022 00:34:58 GMT From: Nathan Whitehorn <nwhitehorn@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: dfa5a74357f3 - main - Fix grammatical issues. Message-ID: <202201020034.2020Ywrn076413@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by nwhitehorn: URL: https://cgit.FreeBSD.org/src/commit/?id=dfa5a74357f3837b93b0cc90e5bee0a1d298ca3e commit dfa5a74357f3837b93b0cc90e5bee0a1d298ca3e Author: Nathan Whitehorn <nwhitehorn@FreeBSD.org> AuthorDate: 2022-01-02 00:34:48 +0000 Commit: Nathan Whitehorn <nwhitehorn@FreeBSD.org> CommitDate: 2022-01-02 00:34:48 +0000 Fix grammatical issues. --- usr.sbin/bsdinstall/scripts/bootconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202201020034.2020Ywrn076413>