Skip to content

Commit b909ed3

Browse files
authored
fix(docs): correct grammatical errors in developer guide (#466)
* fix(docs): correct grammatical errors in developer guide - Reviewed and corrected grammatical issues in Developer's Guide. - Improved clarity, consistency, and professional tone. - Ensured all instructions and code snippets remain accurate. * Trigger PR update with dev_guide.md changes * linting fix
1 parent d45bc83 commit b909ed3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docs/dev_guide.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,15 @@ This is sufficient to run, build, and test the project as a whole, but you might
2525
You'll need _**tsc**_ (_TypeScript Compiler_) to manually compile `.ts` files, and
2626
_**ts-node**_ (_Node.js executable for TypeScript_) to manually execute .ts scripts directly.
2727

28-
Finally, once _**npm**_ is installed, to install the above, run
28+
Finally, once _**npm**_ is installed, run the following commands to install the above tools:
29+
run
2930

3031
```bash
3132
npm i -g typescript
3233
npm i -g ts-node
3334
```
3435

35-
_**Note:**_ Users on _Linux_ and _MacOS_ are required to add a `sudo` before these commands.
36+
_**Note:**_ Users on _Linux_ and _macOS_ are required to add a `sudo` before these commands.
3637

3738
Check installation using
3839

@@ -91,7 +92,7 @@ After setup, the steps you take depend on what you want to do:
9192

9293
## Editor
9394

94-
_All code is just plain text, so any editor works._ However, using modern,
95+
_All code is plain text, so any editor will work._ However, using modern,
9596
feature-rich IDEs/text-editors like:
9697
[_**Atom**_](https://github.blog/2022-06-08-sunsetting-atom/),
9798
[_**Brackets**_](https://brackets.io),
@@ -113,4 +114,4 @@ Recommended extensions for this project are `Babel JavaScript`, `ESLint`, `Git G
113114
`GitLens`, `markdownlint`, `Prettier`, `Tailwind CSS IntelliSense`, and `SVG`.
114115

115116
All that, however, shouldn't necessarily stop you from using _**Emacs**_, _**Nano**_, or _**Vim**_,
116-
if that's your poison :D. Happy coding!
117+
if that's your preference. Happy coding!

0 commit comments

Comments
 (0)