Skip to content

Commit ddb0150

Browse files
authored
Merge pull request #593 from gratiaa/patch-3
[PR] Fix typos
2 parents 844c286 + 3367326 commit ddb0150

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

1-js/01-getting-started/2-code-editors/article.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ There are two archetypes: IDE and lightweight editors. Many people feel comforta
66

77
## IDE
88

9-
The term [IDE](https://en.wikipedia.org/wiki/Integrated_development_environment) (Integrated Development Environment) means a powerful editor with many features that usually operates on a "whole project". As the name suggests, that's not just an editor, but a full-scale "development environment".
9+
The term [IDE](https://en.wikipedia.org/wiki/Integrated_development_environment) (Integrated Development Environment) means a powerful editor with many features that usually operates on a "whole project." As the name suggests, that's not just an editor, but a full-scale "development environment."
1010

1111
An IDE loads the project (can be many files), allows navigation between files, provides autocompletion based on the whole project (not just the open file), integrates with a version management system (like [git](https://git-scm.com/)), a testing environment and other "project-level" stuff.
1212

@@ -18,15 +18,15 @@ If you haven't considered selecting an IDE yet, look at the following variants:
1818

1919
All of the IDEs are cross-platform.
2020

21-
For Windows, there's also a "Visual Studio" editor, don't confuse it with "Visual Studio Code". "Visual Studio" is a paid and actually very powerful Windows-only editor, well-suited for .NET platform. A free version of it is called ([Visual Studio Community](https://www.visualstudio.com/vs/community/).
21+
For Windows, there's also a "Visual Studio" editor, don't confuse it with "Visual Studio Code." "Visual Studio" is a paid and mighty Windows-only editor, well-suited for the .NET platform. A free version of it is called ([Visual Studio Community](https://www.visualstudio.com/vs/community/).
2222

23-
Many IDEs are paid, but have a trial period. Their cost is usually negligible compared to a qualified developer's salary, so just choose the best one for you.
23+
Many IDEs are paid but have a trial period. Their cost is usually negligible compared to a qualified developer's salary, so just choose the best one for you.
2424

2525
## Lightweight editors
2626

2727
"Lightweight editors" are not as powerful as IDEs, but they're fast, elegant and simple.
2828

29-
They are mainly used to instantly open and edit a file.
29+
They are mainly used to open and edit a file instantly.
3030

3131
The main difference between a "lightweight editor" and an "IDE" is that an IDE works on a project-level, so it loads much more data on start, analyzes the project structure if needed and so on. A lightweight editor is much faster if we need only one file.
3232

@@ -38,15 +38,15 @@ The following options deserve your attention:
3838
- [Atom](https://atom.io/) (cross-platform, free).
3939
- [Sublime Text](http://www.sublimetext.com) (cross-platform, shareware).
4040
- [Notepad++](https://notepad-plus-plus.org/) (Windows, free).
41-
- [Vim](http://www.vim.org/) and [Emacs](https://www.gnu.org/software/emacs/) are also cool, if you know how to use them.
41+
- [Vim](http://www.vim.org/) and [Emacs](https://www.gnu.org/software/emacs/) are also cool if you know how to use them.
4242

4343
## My favorites
4444

4545
The personal preference of the author is to have both an IDE for projects and a lightweight editor for quick and easy file editing.
4646

4747
I'm using:
4848

49-
- [WebStorm](http://www.jetbrains.com/webstorm/) for JS, and if there is one more language in the project, then I switch to one of the other Jetbrains offerings listed above.
49+
- [WebStorm](http://www.jetbrains.com/webstorm/) for JS, and if there is one more language in the project, then I switch to one of the other JetBrains offerings listed above.
5050
- As a lightweight editor -- [Sublime Text](http://www.sublimetext.com) or [Atom](https://atom.io/).
5151

5252
## Let's not argue

0 commit comments

Comments
 (0)