Skip to content

Commit 9f010c6

Browse files
authored
Merge pull request #1285 from jessepeterman/patch-1
Fix typo
2 parents fdcdc12 + dbc67c6 commit 9f010c6

File tree

1 file changed

+1
-1
lines changed
  • 1-js/09-classes/03-static-properties-methods

1 file changed

+1
-1
lines changed

Diff for: 1-js/09-classes/03-static-properties-methods/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class Article {
9090

9191
let article = Article.createTodays();
9292

93-
alert( article.title ); // Todays digest
93+
alert( article.title ); // Today's digest
9494
```
9595

9696
Now every time we need to create a today's digest, we can call `Article.createTodays()`. Once again, that's not a method of an article, but a method of the whole class.

0 commit comments

Comments
 (0)