Browse Source

chore: updates README.md

e22m4u 1 year ago
parent
commit
042c4bdfed
1 changed files with 2 additions and 2 deletions
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -128,7 +128,7 @@ import {Service} from '@e22m4u/js-service';
 // the Foo service
 class Foo extends Service {
   method() {
-    // access to the Bar service
+    // access to the Bar
     const bar = this.getService(Bar);
     // ...
   }
@@ -137,7 +137,7 @@ class Foo extends Service {
 // the Bar service
 class Bar extends Service {
   method() {
-    // access to the Foo service
+    // access to the Foo
     const foo = this.getService(Foo);
     // ...
   }