Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
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 /examples
parentca09e1e63d611a0141a68789503cfa472e85e9f9 (diff)
Fix many typos (#1692)
Signed-off-by: Alexander Seiler <seileralex@gmail.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/interactive_installation.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/interactive_installation.py b/examples/interactive_installation.py
index 9eac029c..f8cc75fc 100644
--- a/examples/interactive_installation.py
+++ b/examples/interactive_installation.py
@@ -163,7 +163,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()
@@ -171,7 +171,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)