Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/scripts/guided.py
diff options
context:
space:
mode:
authorAlexander Seiler <seileralex@gmail.com>2023-09-18 14:04:36 +0200
committerGitHub <noreply@github.com>2023-09-18 22:04:36 +1000
commit12b7017240a040fd4fbebf7c5794a1ca5560f0ea (patch)
tree49fa306f4b1dd666bbcb5d9f5abe0c7846c4967b /archinstall/scripts/guided.py
parentca09e1e63d611a0141a68789503cfa472e85e9f9 (diff)
Fix many typos (#1692)
Signed-off-by: Alexander Seiler <seileralex@gmail.com>
Diffstat (limited to 'archinstall/scripts/guided.py')
-rw-r--r--archinstall/scripts/guided.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archinstall/scripts/guided.py b/archinstall/scripts/guided.py
index 51549fa8..d7cf16cd 100644
--- a/archinstall/scripts/guided.py
+++ b/archinstall/scripts/guided.py
@@ -185,7 +185,7 @@ def perform_installation(mountpoint: Path):
installation.set_timezone(timezone)
if archinstall.arguments.get('ntp', False):
- installation.activate_time_syncronization()
+ installation.activate_time_synchronization()
if archinstall.accessibility_tools_in_use():
installation.enable_espeakup()
@@ -193,7 +193,7 @@ def perform_installation(mountpoint: Path):
if (root_pw := archinstall.arguments.get('!root-password', None)) and len(root_pw):
installation.user_set_pw('root', root_pw)
- # This step must be after profile installs to allow profiles_bck to install language pre-requisits.
+ # This step must be after profile installs to allow profiles_bck to install language pre-requisites.
# After which, this step will set the language both for console and x11 if x11 was installed for instance.
installation.set_keyboard_language(locale_config.kb_layout)