Browse Source

chore: updates README.md and README-ru.md

e22m4u 1 year ago
parent
commit
d07f0586a0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -175,7 +175,7 @@ const foo2 = this.getService(Foo);        // returns existing instance
 console.log(foo1 === foo2);               // true
 console.log(foo1 === foo2);               // true
 
 
 const foo3 = this.getService(Foo, 'arg'); // recreates instance
 const foo3 = this.getService(Foo, 'arg'); // recreates instance
-const foo4 = this.getService(Foo);        // returns already recreated instance
+const foo4 = this.getService(Foo);        // returns recreated instance
 console.log(foo3 === foo4);               // true
 console.log(foo3 === foo4);               // true
 ```
 ```