Skip to content

Commit 25d51b1

Browse files
authored
Merge pull request #2800 from HiddenOgre28/patch-2
Fix: Rewrite sentence in line 121
2 parents 3ee59f0 + e9e06a5 commit 25d51b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/09-classes/01-class/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ alert(Object.getOwnPropertyNames(User.prototype)); // constructor, sayHi
118118

119119
## Not just a syntactic sugar
120120

121-
Sometimes people say that `class` is a "syntactic sugar" (syntax that is designed to make things easier to read, but doesn't introduce anything new), because we could actually declare the same without `class` keyword at all:
121+
Sometimes people say that `class` is a "syntactic sugar" (syntax that is designed to make things easier to read, but doesn't introduce anything new), because we could actually declare the same thing without using the `class` keyword at all:
122122

123123
```js run
124124
// rewriting class User in pure functions

0 commit comments

Comments
 (0)