diff --git a/README.md b/README.md
index 29286c716..c50d24255 100644
--- a/README.md
+++ b/README.md
@@ -91,7 +91,7 @@ npm start
To configure it, run `PiGallery2` first to create `config.json` file, then edit it and restart.
The app has a nice UI for settings, you may use that too.
-Default user: `admin` pass: `admin`. (It is not possible to change the admin password, you need to create an other user and delete the default `admin` user, see #220)
+Default user: `admin` pass: `admin`. (It is not possible to change the admin password, you need to create another user and delete the default `admin` user, see #220)
**Note**: First run, you might have file access issues and port 80 issue, see [#115](https://github.com/bpatrik/pigallery2/issues/115).
Running `npm start -- --Server-port=8080` will start the app on port 8080 that does not require `root`
diff --git a/docs/index.html b/docs/index.html
index 77b0ad179..aeab4d295 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -139,7 +139,7 @@
Advanced searching
keyword:"house"
caption:"caption"
- directory:"dir name/an other dir"
+ directory:"dir name/another dir"
file_name:"img.jpg",
person:"John",
position:"USA" # use city, state, country names
diff --git a/src/backend/model/jobs/JobManager.ts b/src/backend/model/jobs/JobManager.ts
index 2ca98e37b..cc69757c2 100644
--- a/src/backend/model/jobs/JobManager.ts
+++ b/src/backend/model/jobs/JobManager.ts
@@ -59,7 +59,7 @@ export class JobManager implements IJobManager, IJobListener {
(allowParallelRun === false && this.JobRunning === true) ||
this.JobNoParallelRunning === true
) {
- throw new Error("Can't start this job while an other is running");
+ throw new Error("Can't start this job while another is running");
}
const t = this.findJob(jobName);
diff --git a/src/frontend/app/ui/settings/jobs/jobs.settings.component.html b/src/frontend/app/ui/settings/jobs/jobs.settings.component.html
index 0d285dc95..f1407d1eb 100644
--- a/src/frontend/app/ui/settings/jobs/jobs.settings.component.html
+++ b/src/frontend/app/ui/settings/jobs/jobs.settings.component.html
@@ -141,7 +141,7 @@