From f19706538f73b9487916801641fd33320a5a5afd Mon Sep 17 00:00:00 2001 From: divdeploy Date: Fri, 5 Apr 2024 22:56:22 +0800 Subject: [PATCH] chore: fix some typos Signed-off-by: divdeploy --- test/types/pino.test-d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/types/pino.test-d.ts b/test/types/pino.test-d.ts index 740f7fd72..ece69cae9 100644 --- a/test/types/pino.test-d.ts +++ b/test/types/pino.test-d.ts @@ -311,14 +311,14 @@ log3.on('level-change', (lvl, val, prevLvl, prevVal, instance) => { }); const clog3 = log3.child({}, { customLevels: { childLevel: 120 } }) -// child inherit parant +// child inherit parent clog3.myLevel('') // child itself clog3.childLevel('') const cclog3 = clog3.child({}, { customLevels: { childLevel2: 130 } }) // child inherit root cclog3.myLevel('') -// child inherit parant +// child inherit parent cclog3.childLevel('') // child itself cclog3.childLevel2('')