diff --git a/index.html b/index.html index 34a7561a..277b0b7b 100644 --- a/index.html +++ b/index.html @@ -2741,11 +2741,11 @@ emphasizes that the line is a method call, not a new statement. eslint:
// bad
 class Dragon {
-  get age() {
+  get age() {
     // ...
   }
 
-  set age(value) {
+  set age(value) {
     // ...
   }
 }