diff --git a/docs/topics/Coding-Standards.md b/docs/topics/Coding-Standards.md
index e489914..efba727 100644
--- a/docs/topics/Coding-Standards.md
+++ b/docs/topics/Coding-Standards.md
@@ -4,7 +4,7 @@ This page contains the coding standards for the %product%.
## General
-In developing the product, we must follow the
+When developing the product, follow the
ES6 standard.
Both repositories are written in
ES6.
diff --git a/docs/topics/Components.md b/docs/topics/Components.md
index 8ed5194..d62c194 100644
--- a/docs/topics/Components.md
+++ b/docs/topics/Components.md
@@ -59,7 +59,7 @@ components that are used by views are stored in the `src/components`.
The `ref` function is used to create a reactive reference. This means that
whenever the value of the reference changes, the component will be re-rendered.
-If we want a reactive primitive variable, we must use the `ref` function.
+If you want a reactive primitive variable, you must use the `ref` function.
### Example { id="reactivity-example" }
@@ -75,7 +75,7 @@ function increment() {
```
-For objects, such as arrays, we must use the `reactive` function.
+For objects, such as arrays, you must use the `reactive` function.
### Example { id="reactivity-example-2" }
diff --git a/docs/topics/Express-Routes.md b/docs/topics/Express-Routes.md
index fc34044..65e0415 100644
--- a/docs/topics/Express-Routes.md
+++ b/docs/topics/Express-Routes.md
@@ -24,7 +24,7 @@ Route paths can be strings, string patterns, or regular expressions.
### Resource Naming
-For this project, we follow the industry standard of naming conventions,
+This project follows the industry standard of naming conventions,
which you may find [here](https://restfulapi.net/resource-naming/).
diff --git a/docs/topics/Vue.md b/docs/topics/Vue.md
index 9498213..157583b 100644
--- a/docs/topics/Vue.md
+++ b/docs/topics/Vue.md
@@ -13,13 +13,13 @@ hand, Vue is also perfectly capable of powering sophisticated Single-Page
Applications when used in combination with modern tooling and supporting
libraries.
-For this project, we use Vue.js 3 built with [Vite](https://vitejs.dev/).
+This project uses Vue.js 3 built with [Vite](https://vitejs.dev/).
## Vue API
The Vue API is available
here online.
-We will be using the Composition API, which is available
+This project uses the Composition API, which is available
here online.