diff --git a/FAQs.md b/FAQs.md
index f1516eb..807496b 100644
--- a/FAQs.md
+++ b/FAQs.md
@@ -4,7 +4,7 @@ This has been written to address some frequently asked questions among users of
* [What do all these settings in the UI do? Changing them seems to have no effect.](#settings)
* [My custom `hostapd.conf` / `php.ini` is gone. Help!](#custom)
* [I changed the admin password and forgot what it was. Help!](#password)
-* [What are the steps to upgrade RaspAP?](#upgrade)
+* [How do I upgrade RaspAP?](#upgrade)
* [RaspAP control panel works but there is no WiFi after reboot.](#nowifi)
* [Do I need the RaspAP service to run at boot?](#raspap-service)
* [How do I integrate RaspAP with Pi-hole?](#pihole)
@@ -58,7 +58,7 @@ You are free to SSH in to restore those files to their rightful position. Howeve
## I changed the admin password and forgot what it was. Help!
Login credentials are stored in `/etc/raspap/raspap.auth`. The password is encrypted and cannot be edited manually. However, deleting this file with `sudo rm /etc/raspap/raspap.auth` will restore the default admin password.
-## What are the steps to upgrade RaspAP?
+## How do I upgrade RaspAP?
Upgrading an existing install without changing your configuration is very straightforward. To upgrade to the [latest release](https://github.com/billz/raspap-webgui/releases/latest) version, simply run the [Quick Installer](https://github.com/billz/raspap-webgui/wiki/Quick-Installer-usage) with the `--upgrade` option:
```
@@ -79,7 +79,7 @@ A tag is a pointer that isn't connected to the main development tree that git kn
Alternatively, if you want the latest _bleeding edge_ commits from the master branch, use the following:
```
-sudo git checkout master
+sudo git checkout -b master
sudo git pull origin master
```