Browse Source

chore: updates README.md

e22m4u 3 months ago
parent
commit
0886d42727
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -215,7 +215,7 @@ process.env['DEBUG'] = 'myApp*';
 class UserService extends DebuggableService {
   async getUserById(userId) {
     // получение отладчика для данного метода
-    // (для текущего вызова генерируется хэш)
+    // (для каждого вызова генерируется хэш)
     const debug = this.getDebuggerFor(this.getUserById);
     debug('Fetching user with ID %v...', userId);
     try {