grim/hgkeeper

fix a bunch of typos

21 months ago, Gary Kramlich
78c18605c140
Parents 69db4c08b54a
Children 3c93ac85c843
fix a bunch of typos
--- a/docs/docs/ondemand.md Sun Mar 27 03:59:51 2022 -0500
+++ b/docs/docs/ondemand.md Tue Jun 21 16:21:23 2022 -0500
@@ -4,7 +4,7 @@
This is accomplished by having a local user on the host, typically named `hg`,
and telling the OpenSSH server to do something specific when that user logs in.
-HGKeeper will also be ran via this user and all of the repositories will belong
+HGKeeper will also be run via this user and all of the repositories will belong
to them in the filesystem.
{%
@@ -31,8 +31,8 @@
You should now be able to clone the `hgkeeper` administration repo through
your normal OpenSSH Server. You can verify this by trying to clone the
-`hgkeeper` administration repository with the following command replacing
-`<my hostname>` with the actual hostname of your server.
+`hgkeeper` administration repository with the following command, replacing
+`<my hostname>` with the actual hostname of your server:
```
hg clone ssh://<my hostname>/hgkeeper
--- a/docs/includes/hguser.md Sun Mar 27 03:59:51 2022 -0500
+++ b/docs/includes/hguser.md Tue Jun 21 16:21:23 2022 -0500
@@ -1,9 +1,9 @@
# Create The `hg` User
You can name this user whatever you like, but for the sake of simplicity, we
-just be using `hg` here. We are also going to createan `hg` group to keep to
-make sure file permissions remain tight. For most Linux/BSD distributions, you
-can create the `hg` user and group with the following commands:
+will just be using `hg` here. We are also going to create an `hg` group to keep
+to make sure file permissions remain tight. For most Linux/BSD distributions,
+you can create the `hg` user and group with the following commands:
```
sudo groupadd --system hg
--- a/docs/includes/ondemand/adminrepository.md Sun Mar 27 03:59:51 2022 -0500
+++ b/docs/includes/ondemand/adminrepository.md Tue Jun 21 16:21:23 2022 -0500
@@ -9,8 +9,8 @@
whoami
```
-We changed to the `hg` users home directory as this is where we are going to
-store all of the files. The last line of output should just say `hg` which we
+We changed to the `hg` user's home directory as this is where we are going to
+store all of the files. The last line of output should just say `hg`, which we
are using to verify that you did in fact switch to the `hg` user.
Now that we're in the proper location we can create the administration
--- a/docs/includes/ondemand/openssh.md Sun Mar 27 03:59:51 2022 -0500
+++ b/docs/includes/ondemand/openssh.md Tue Jun 21 16:21:23 2022 -0500
@@ -1,6 +1,6 @@
# Configuring OpenSSH Server
-Configuring OpenSSH Server is very straight forward. All we need to do is drop
+Configuring OpenSSH Server is very straightforward. All we need to do is drop
the following snippet into `/etc/ssh/sshd_config`. Of course, if you customized
the install location or username you will have to adjust the snippet.