Skip to content

Commit 46ea173

Browse files
committed
Fix typos
1 parent e0c1b86 commit 46ea173

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

archinstall/lib/installer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1786,7 +1786,7 @@ def add_bootloader(self, bootloader: Bootloader, uki_enabled: bool = False, boot
17861786
for plugin in plugins.values():
17871787
if hasattr(plugin, 'on_add_bootloader'):
17881788
# Allow plugins to override the boot-loader handling.
1789-
# This allows for bot configuring and installing bootloaders.
1789+
# This allows for boot configuring and installing bootloaders.
17901790
if plugin.on_add_bootloader(self):
17911791
return
17921792

archinstall/lib/output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def as_table(
5656
capitalize: bool = False,
5757
) -> str:
5858
"""variant of as_table (subtly different code) which has two additional parameters
59-
filter which is a list of fields which will be shon
59+
filter which is a list of fields which will be shown
6060
class_formatter a special method to format the outgoing data
6161
6262
A general comment, the format selected for the output (a string where every data record is separated by newline)

docs/examples/python.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ We begin by creating "`scripts`_:code:`/test_installer.py`". The placement here
2929
This script can now already be called using :code:`python -m archinstall --script test_installer` after a successful installation of the library itself.
3030
But the script won't do much. So we'll do something simple like list all the hard drives as an example.
3131

32-
To do this, we'll begin by importing :code:`archinstall` in our "`scripts`_:code:`/test_installer.py`" and call a function whtin ``archinstall``.
32+
To do this, we'll begin by importing :code:`archinstall` in our "`scripts`_:code:`/test_installer.py`" and call a function within ``archinstall``.
3333

3434
.. code-block:: python
3535

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
archinstall Documentation
22
=========================
33

4-
**archinstall** is library which can be used to install Arch Linux.
4+
**archinstall** is a library which can be used to install Arch Linux.
55
The library comes packaged with different pre-configured installers, such as the default :ref:`guided` installer.
66

77
Some of the features of Archinstall are:

0 commit comments

Comments
 (0)