Skip to content

Commit ad17d45

Browse files
authored
docs : fixed typos (#2)
Fixed some typos in LICENCE and README.md
1 parent 2ad8ad4 commit ad17d45

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

LICENCE renamed to LICENSE

File renamed without changes.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ $ npx json-base --init
3535

3636
Normally, the database.json created comes with 2 sample data collections, 'users' ans 'posts', you can add more collections as you please, it's allow.
3737

38-
**NB** : Respect the sythax of json files while adding new collection and also keep in mind that all collections must be enwrapped in the `db` field.
38+
**NB** : Respect the syntax of json files while adding new collection and also keep in mind that all collections must be enwrapped in the `db` field.
3939
<br>
4040

4141

4242
**4. Perform crud on the schemas as you need it**
4343

44-
Let's have a simple tutorial on how we can use this `json-base`. We're going to create a simple app to interact with our models where we can get all the users, get a particular user with a unique key or get a group of users but not all. The developer can also get a limited number of users if he or she specifies the limit arguement in the get function. We're doing this in [tutorial](#3-a-simple-tutorial) section
44+
Let's have a simple tutorial on how we can use this `json-base`. We're going to create a simple app to interact with our models where we can get all the users, get a particular user with a unique key or get a group of users but not all. The developer can also get a limited number of users if he or she specifies the limit argument in the get function. We're doing this in [tutorial](#3-a-simple-tutorial) section
4545

4646
## 3. A simple tutorial
4747

@@ -106,7 +106,7 @@ import { get } from '@ndzhwr/json-base'
106106
})
107107
}())
108108
```
109-
The code above retreives `1 record` from the `users` collection, where `user.id == 2`
109+
The code above retrieves `1 record` from the `users` collection, where `user.id == 2`
110110

111111
#### 3. Create data
112112
As said before, we'll be creating a simple crud operation, this means that we already have read checked on our todo checklist as read is the same as getting data. Next we're going to work on creating data.
@@ -178,14 +178,14 @@ We can't finish without talking about how to delete all data from db in case you
178178

179179
## Contributing
180180
Willing to contribute to this Open Source project ?
181-
You can contribute to this project by **making bug reports** , **requesing feautures** , **Adding features** and more other ways. Read more [here](CONTRIBUTING.md) before contributing.
181+
You can contribute to this project by **making bug reports** , **requesting features** , **Adding features** and more other ways. Read more [here](CONTRIBUTING.md) before contributing.
182182

183183
## Maintainers
184184
This repo is maintained by [@ndzhwr](https://github.com/ndzhwr).
185185
You can buy him coffee on <a style="color:yellow;" href="https://www.buymeacoffee.com/ndzhwr">Buymeacoffee</a>
186186

187187
## Licence
188-
This project is [MIT](LICENCE) licenced.
188+
This project is [MIT](LICENSE) licensed.
189189
___
190190

191191
<p align="right"> Jan 2023. </p>

0 commit comments

Comments
 (0)