Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion archinstall/lib/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1786,7 +1786,7 @@ def add_bootloader(self, bootloader: Bootloader, uki_enabled: bool = False, boot
for plugin in plugins.values():
if hasattr(plugin, 'on_add_bootloader'):
# Allow plugins to override the boot-loader handling.
# This allows for bot configuring and installing bootloaders.
# This allows for boot configuring and installing bootloaders.
if plugin.on_add_bootloader(self):
return

Expand Down
2 changes: 1 addition & 1 deletion archinstall/lib/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def as_table(
capitalize: bool = False,
) -> str:
"""variant of as_table (subtly different code) which has two additional parameters
filter which is a list of fields which will be shon
filter which is a list of fields which will be shown
class_formatter a special method to format the outgoing data

A general comment, the format selected for the output (a string where every data record is separated by newline)
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/python.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ We begin by creating "`scripts`_:code:`/test_installer.py`". The placement here
This script can now already be called using :code:`python -m archinstall --script test_installer` after a successful installation of the library itself.
But the script won't do much. So we'll do something simple like list all the hard drives as an example.

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

.. code-block:: python

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
archinstall Documentation
=========================

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

Some of the features of Archinstall are:
Expand Down
Loading