Skip to content

Commit

Permalink
Fix typo in style guides
Browse files Browse the repository at this point in the history
On line no 14, 2nd sentence, `them` was repeated twice.
  • Loading branch information
prathameshrp authored Aug 27, 2024
1 parent 7c2361c commit 44a0fa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/javascript_in_the_real_world/linting.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This section contains a general overview of topics that you will learn in this l

### Style guides

Code style is important! Having a consistent set of style rules for things such as indentation or preferred quote style makes your code more maintainable and easier to read. There are several popular JavaScript style guides on the net that set standards for these types of things, and a little time spent looking through them them *will* make you a better developer. Have a little look at some popular style guides for an idea of what sort of things can be done to improve consistency:
Code style is important! Having a consistent set of style rules for things such as indentation or preferred quote style makes your code more maintainable and easier to read. There are several popular JavaScript style guides on the net that set standards for these types of things, and a little time spent looking through them *will* make you a better developer. Have a little look at some popular style guides for an idea of what sort of things can be done to improve consistency:

1. The [Airbnb Style Guide](https://github.com/airbnb/javascript) is one of the most popular. It is also very well formatted and easy to read.
1. There is also a [JavaScript style guide used at Google](https://google.github.io/styleguide/jsguide.html).
Expand Down

0 comments on commit 44a0fa4

Please sign in to comment.