Skip to content

Commit 3ae2e9e

Browse files
authored
fix: typo
1 parent 86dec0d commit 3ae2e9e

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ alert(Rabbit.prototype.__proto__ === Animal.prototype); // true
221221

222222
举个例子, 一个用于进行比较的方法 `Article.compare(article1, article2)` 或一个工厂(factory)方法 `Article.createTodays()`
223223

224-
在类生命中,它们都被用关键字 `static` 进行了标记。
224+
在类声明中,它们都被用关键字 `static` 进行了标记。
225225

226226
静态属性被用于当我们想要存储类级别的数据时,而不是绑定到实例。
227227

0 commit comments

Comments
 (0)