From dbc67c6f9f03ed836f4cc999f7a84d7cef3daacb Mon Sep 17 00:00:00 2001 From: Jesse Peterman <38507515+jessepeterman@users.noreply.github.com> Date: Tue, 27 Aug 2019 23:47:05 -0700 Subject: [PATCH] Fix typo fix typo in comment to match code example --- 1-js/09-classes/03-static-properties-methods/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/09-classes/03-static-properties-methods/article.md b/1-js/09-classes/03-static-properties-methods/article.md index 5abe494ea7..583fabcff9 100644 --- a/1-js/09-classes/03-static-properties-methods/article.md +++ b/1-js/09-classes/03-static-properties-methods/article.md @@ -90,7 +90,7 @@ class Article { let article = Article.createTodays(); -alert( article.title ); // Todays digest +alert( article.title ); // Today's digest ``` 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.