Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Commit

Permalink
docs: change POV form from 1st to 2nd/3rd
Browse files Browse the repository at this point in the history
  • Loading branch information
Dwigoric committed Nov 30, 2023
1 parent 69d5b06 commit 826dee9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/topics/Coding-Standards.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<tooltip term='es6'>ES6</tooltip> standard.
Both repositories are written in
<tooltip term='es6'>ES6</tooltip>.
Expand Down
4 changes: 2 additions & 2 deletions docs/topics/Components.md
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand All @@ -75,7 +75,7 @@ function increment() {
</script>
```

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" }

Expand Down
2 changes: 1 addition & 1 deletion docs/topics/Express-Routes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).

<seealso>
Expand Down
4 changes: 2 additions & 2 deletions docs/topics/Vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<a href="https://v3.vuejs.org/api/" >here online</a>.
We will be using the Composition API, which is available
This project uses the Composition API, which is available
<a href="https://v3.vuejs.org/api/composition-api.html" >here online</a>.

<seealso>
Expand Down

0 comments on commit 826dee9

Please sign in to comment.