Skip to content

Commit ec24f57

Browse files
docs: fix typos in new README.md documentation
Co-authored-by: Leon Silva <[email protected]>
1 parent ce0eec7 commit ec24f57

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ Next, you will be able to open the project in your favorite IDE or Code Editor a
4949

5050
## Templates
5151

52-
The package offers the following templates, which connect to the database using the the [oracledb database driver](https://github.com/oracle/node-oracledb):
52+
The package offers the following templates, which connect to the database using the [oracledb database driver](https://github.com/oracle/node-oracledb):
5353

5454
- `node-vanilla`: A starter template that uses Node.js, vanilla JavaScript, HTML and CSS. It is built by [vite](https://vitejs.dev/).
5555
- `node-jet`: A starter template that uses Node.js and [Oracle JET](https://www.oracle.com/webfolder/technetwork/jet/index.html). It is built using the [ojet-cli](https://www.npmjs.com/package/@oracle/ojet-cli).
5656
- `node-react`: A starter template that uses Node.js and [React](https://react.dev/). It is built by [vite](https://vitejs.dev/).
5757
- `node-vue`: A starter template that uses Node.js and [Vue.js](https://vuejs.org/). It is built by [vite](https://vitejs.dev/).
58-
- `node-angular`: A starter template that uses and [Angular](https://angular.dev/). It is built by [Angular CLI](https://github.com/angular/angular-cli). (New in `v1.2.0`)
58+
- `node-angular`: A starter template that uses Node.js and [Angular](https://angular.dev/). It is built by [Angular CLI](https://github.com/angular/angular-cli). (New in `v1.2.0`)
5959
- `node-react-todo`: A simple task manager template that uses Node.js and [React](https://react.dev/). It demonstrates the use of the database for Create, Read, Update and Delete (CRUD) operations. It is built by [vite](https://vitejs.dev/).
6060

6161
Each of the templates include documentation for you to get started with them, as well as NPM scripts for you to use right after generating the application.
@@ -69,7 +69,7 @@ You can provide the following options directly to the command:
6969
- `basic`: Requires additional information like `db-protocol`, `db-hostname`, etc.
7070
- `walletPath`: Requires a path to the wallet via the `wallet-path` flag.
7171
- `wallet-path`: Path to the zip file (or folder if uncompressed) containing the wallet and network configuration files.
72-
- `db-username`: Dabase username to connect. **Note**: For [Autonomous Databases](https://www.oracle.com/autonomous-database/) we do not recommend using the ADMIN user.
72+
- `db-username`: Database username to connect. **Note**: For [Autonomous Databases](https://www.oracle.com/autonomous-database/) we do not recommend using the ADMIN user.
7373
- `db-protocol`: For details consult [Connecting to Oracle Database](https://node-oracledb.readthedocs.io/en/latest/user_guide/connection_handling.html).
7474
- `db-hostname`: For details consult [Connecting to Oracle Database](https://node-oracledb.readthedocs.io/en/latest/user_guide/connection_handling.html).
7575
- `db-port`: For details consult [Connecting to Oracle Database](https://node-oracledb.readthedocs.io/en/latest/user_guide/connection_handling.html).
@@ -80,7 +80,7 @@ You can provide the following options directly to the command:
8080
- `db-sid`: For details consult [Connecting to Oracle Database](https://node-oracledb.readthedocs.io/en/latest/user_guide/connection_handling.html).
8181

8282
## Database Environment
83-
When an application is generated, you'll find an .env file with details regarding the connection to the database used in the application.
83+
When an application is generated, you'll find a `.env` file with details regarding the connection to the database used in the application.
8484

8585
```properties
8686
# Database user
@@ -108,7 +108,7 @@ npm create @oracle/database-app -- "my-react-app" --template "node-react"
108108

109109
### React todo app
110110

111-
You can generate an example of an fully functional application. The example below creates an app named `my-todo` with the `node-react-todo` template.
111+
You can generate an example of a fully functional application. The example below creates an app named `my-todo` with the `node-react-todo` template.
112112

113113
```sh
114114
npm create @oracle/database-app -- "my-todo" --template "node-react-todo"

0 commit comments

Comments
 (0)