Skip to content

Commit b046c65

Browse files
authored
Fix typo in development.md (hestiacp#5106)
1 parent 89f1f82 commit b046c65

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/docs/contributing/development.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
Hestia is an open-source project, and we welcome contributions from the community. Please read the [contributing guidelines](https://github.com/hestiacp/hestiacp/blob/main/CONTRIBUTING.md) for additional information.
44

5-
Hestia is designed to be installed on a web server. To develop Hestia on your local machine, a virtual machine is recommend.
5+
Hestia is designed to be installed on a web server. To develop Hestia on your local machine, a virtual machine is recommended.
66

77
::: warning
8-
Development builds are unstable. If you encounter a bug please [report it via GitHub](https://github.com/hestiacp/hestiacp/issues/new/choose) or [submit a Pull Request](https://github.com/hestiacp/hestiacp/pulls).
8+
Development builds are unstable. If you encounter a bug, please [report it via GitHub](https://github.com/hestiacp/hestiacp/issues/new/choose) or [submit a Pull Request](https://github.com/hestiacp/hestiacp/pulls).
99
:::
1010

1111
## Creating a virtual machine for development
@@ -36,21 +36,21 @@ These instructions use [Multipass](https://multipass.run/) to create an Ubuntu V
3636
multipass mount ~/projects/hestiacp hestia-dev:/home/ubuntu/hestiacp
3737
```
3838

39-
1. SSH into the VM as root then install some required packages
39+
1. SSH into the VM as root, then install some required packages
4040

4141
```bash
4242
multipass exec hestia-dev -- sudo bash
4343
sudo apt update && sudo apt install -y jq libjq1
4444
```
4545

46-
1. Navigate to `/src` in the VM then build Hestia packages
46+
1. Navigate to `/src` in the VM, then build Hestia packages
4747

4848
```bash
4949
cd src
5050
./hst_autocompile.sh --all --noinstall --keepbuild '~localsrc'
5151
```
5252

53-
1. Navigate to `/install` in the VM then install Hestia with these flags
53+
1. Navigate to `/install` in the VM, then install Hestia with these flags
5454

5555
_(update the [installation flags](../introduction/getting-started#list-of-installation-options) to your liking, note that login credentials are set here)_
5656

@@ -82,7 +82,7 @@ These instructions use [Multipass](https://multipass.run/) to create an Ubuntu V
8282
Hestia is now running in a virtual machine. If you'd like to make changes to the source code and test them in your browser, please continue to the next section.
8383

8484
::: warning
85-
Sometimes (with Multipass) the mapping between the source code directory on your local machine to the directory in the VM can be lost with a "failed to obtain exit status for remote process" error. If this happens simply unmount and remount e.g.
85+
Sometimes (with Multipass), the mapping between the source code directory on your local machine to the directory in the VM can be lost with a "failed to obtain exit status for remote process" error. If this happens, simply unmount and remount, e.g.
8686

8787
```bash
8888
multipass unmount hestia-dev
@@ -93,7 +93,7 @@ multipass mount ~/projects/hestiacp hestia-dev:/home/ubuntu/hestiacp
9393

9494
## Making changes to Hestia
9595

96-
After setting up Hestia in a development VM you can now make changes to the source code at `~/projects/hestiacp` on your local machine (outside of the VM) using your editor of choice.
96+
After setting up Hestia in a development VM, you can now make changes to the source code at `~/projects/hestiacp` on your local machine (outside of the VM) using your editor of choice.
9797

9898
Below are some instructions for making a change to Hestia's UI, running the build script and testing the change locally.
9999

0 commit comments

Comments
 (0)