Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk/btrfs/btrfs_helpers.py
diff options
context:
space:
mode:
authorKian-Meng Ang <kianmeng.ang@gmail.com>2022-05-29 15:31:18 +0800
committerGitHub <noreply@github.com>2022-05-29 09:31:18 +0200
commit2de153003ed5de1018639070fabc9c9e583c49d1 (patch)
tree3bf487686ba2aaa5d469af77ef18998efdcab941 /archinstall/lib/disk/btrfs/btrfs_helpers.py
parentb2f85889a7a935a4d9638fe0fec5aac45e721b09 (diff)
Fix typos (#1265)
Diffstat (limited to 'archinstall/lib/disk/btrfs/btrfs_helpers.py')
-rw-r--r--archinstall/lib/disk/btrfs/btrfs_helpers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archinstall/lib/disk/btrfs/btrfs_helpers.py b/archinstall/lib/disk/btrfs/btrfs_helpers.py
index d577d82b..5fa94314 100644
--- a/archinstall/lib/disk/btrfs/btrfs_helpers.py
+++ b/archinstall/lib/disk/btrfs/btrfs_helpers.py
@@ -10,7 +10,7 @@ from .btrfssubvolume import BtrfsSubvolume
def mount_subvolume(installation, device, name, subvolume_information):
- # we normalize the subvolume name (getting rid of slash at the start if exists. In our implemenation has no semantic load.
+ # we normalize the subvolume name (getting rid of slash at the start if exists. In our implementation has no semantic load.
# Every subvolume is created from the top of the hierarchy- and simplifies its further use
name = name.lstrip('/')
@@ -53,7 +53,7 @@ def setup_subvolumes(installation, partition_dict):
"""
log(f"Setting up subvolumes: {partition_dict['btrfs']['subvolumes']}", level=logging.INFO, fg="gray")
for name, right_hand in partition_dict['btrfs']['subvolumes'].items():
- # we normalize the subvolume name (getting rid of slash at the start if exists. In our implemenation has no semantic load.
+ # we normalize the subvolume name (getting rid of slash at the start if exists. In our implementation has no semantic load.
# Every subvolume is created from the top of the hierarchy- and simplifies its further use
name = name.lstrip('/')