Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorremLse <remlause@gmail.com>2021-12-18 19:01:40 +0100
committerGitHub <noreply@github.com>2021-12-18 19:01:40 +0100
commitc6b499cf47fac7a02714e590cf662a85db3095b1 (patch)
tree0124b8921120ba557d5025bb7d1dd5ce9c7f13d9 /README.md
parent7a018415862677c165494decc5d8ad9e06c65fb7 (diff)
Update documentation (#803)
* Add guide for building docs locally * Update documentation - Fix typos - Fix some formatting - Fix broken links - Improve readability of json profile specification
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index ad25a58a..0443fd0d 100644
--- a/README.md
+++ b/README.md
@@ -61,7 +61,7 @@ Therefore, Archinstall will try its best to not introduce any breaking changes e
You could just copy [guided.py](examples/guided.py) as a starting point.
-However, assuming you're building your own ISO and want to create an automated installation process, or you want to install virtual machines on to local disk images, here is a [minimal example](examples/minimal.py) of how to install using archinstall as a Python library:<br>
+However, assuming you're building your own ISO and want to create an automated installation process, or you want to install virtual machines onto local disk images, here is a [minimal example](examples/minimal.py) of how to install using archinstall as a Python library:<br>
```python
import archinstall, getpass
@@ -122,9 +122,9 @@ This installer will perform the following:
## Unattended installation based on MAC address
-Archinstall comes with a [unattended](examples/unattended.py) example which will look for a matching profile for the machine it is being run on, based on any local MAC address.
+Archinstall comes with an [unattended](examples/unattended.py) example which will look for a matching profile for the machine it is being run on, based on any local MAC address.
For instance, if the machine that [unattended](examples/unattended.py) is run on has the MAC address `52:54:00:12:34:56` it will look for a profile called [profiles/52-54-00-12-34-56.py](profiles/52-54-00-12-34-56.py).
-If it's found, the unattended installation will commence and source that profile as it's installation procedure.
+If it's found, the unattended installation will commence and source that profile as its installation procedure.
# Testing