some more grammer fixes

This commit is contained in:
advaithm 2021-04-20 22:09:27 +05:30
parent 85c5275a8f
commit a694daec5d
No known key found for this signature in database
GPG Key ID: E557E45E6DAFFC0C
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ def ask_for_bootloader() -> str:
if hasUEFI()==False:
bootloader="grub-install"
else:
bootloader_choice = input("Would you like to use GRUB as a bootloader instead off systemd-boot [y/N] ").lower()
bootloader_choice = input("Would you like to use GRUB as a bootloader instead of systemd-boot? [y/N] ").lower()
if bootloader_choice == "y":
bootloader="grub-install"
return bootloader