Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorRafael Fontenelle <rffontenelle@users.noreply.github.com>2024-03-07 09:19:44 -0300
committerGitHub <noreply@github.com>2024-03-07 13:19:44 +0100
commit0d5e1cf752010e1c2d068077bbd55ae25d3d0bd7 (patch)
tree686815e493d702c349e50f0a1dd85b56e39b766f /archinstall
parent98f24317280c76b70177bfe4bbd50d87406f2b3e (diff)
Fix misspellings (#2306)
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/__init__.py2
-rw-r--r--archinstall/lib/installer.py2
-rw-r--r--archinstall/lib/interactions/disk_conf.py2
-rw-r--r--archinstall/lib/menu/abstract_menu.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/archinstall/__init__.py b/archinstall/__init__.py
index efb73710..78798441 100644
--- a/archinstall/__init__.py
+++ b/archinstall/__init__.py
@@ -84,7 +84,7 @@ def define_arguments():
parser.add_argument("--script", default="guided", nargs="?", help="Script to run for installation", type=str)
parser.add_argument("--mount-point", "--mount_point", nargs="?", type=str,
help="Define an alternate mount point for installation")
- parser.add_argument("--skip-ntp", action="store_true", help="Disables NTP checks during instalation", default=False)
+ parser.add_argument("--skip-ntp", action="store_true", help="Disables NTP checks during installation", default=False)
parser.add_argument("--debug", action="store_true", default=False, help="Adds debug info into the log")
parser.add_argument("--offline", action="store_true", default=False,
help="Disabled online upstream services such as package search and key-ring auto update.")
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index ccae8faa..2ea728bb 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -148,7 +148,7 @@ class Installer:
if not _notified and time.time() - _started_wait > 5:
_notified = True
warn(
- _("Time syncronization not completing, while you wait - check the docs for workarounds: https://archinstall.readthedocs.io/"))
+ _("Time synchronization not completing, while you wait - check the docs for workarounds: https://archinstall.readthedocs.io/"))
time_val = SysCommand('timedatectl show --property=NTPSynchronized --value').decode()
if time_val and time_val.strip() == 'yes':
diff --git a/archinstall/lib/interactions/disk_conf.py b/archinstall/lib/interactions/disk_conf.py
index 85b377b7..bbd8957d 100644
--- a/archinstall/lib/interactions/disk_conf.py
+++ b/archinstall/lib/interactions/disk_conf.py
@@ -308,7 +308,7 @@ def suggest_single_disk_layout(
root_partition.btrfs_subvols = subvolumes
elif using_home_partition:
# If we don't want to use subvolumes,
- # But we want to be able to re-use data between re-installs..
+ # But we want to be able to reuse data between re-installs..
# A second partition for /home would be nice if we have the space for it
home_start = root_partition.length
home_length = device.device_info.total_size - root_partition.length
diff --git a/archinstall/lib/menu/abstract_menu.py b/archinstall/lib/menu/abstract_menu.py
index 2ceb6ca7..14db98ca 100644
--- a/archinstall/lib/menu/abstract_menu.py
+++ b/archinstall/lib/menu/abstract_menu.py
@@ -344,7 +344,7 @@ class AbstractMenu:
value = value.strip()
# if this calls returns false, we exit the menu
- # we allow for an callback for special processing on realeasing control
+ # we allow for an callback for special processing on releasing control
if not self._process_selection(value):
break