diff --git a/exercises/04.globals/01.solution.global-methods/README.mdx b/exercises/04.globals/01.solution.global-methods/README.mdx index 1994ebf..bdacdf6 100644 --- a/exercises/04.globals/01.solution.global-methods/README.mdx +++ b/exercises/04.globals/01.solution.global-methods/README.mdx @@ -73,8 +73,7 @@ To fix this, you need to extend the type of `Console['log']` in your test and ma import { MockInstance } from 'vitest' declare namespace console { - var log: Console['log'] & - MockInstance, ReturnType> + var log: Console['log'] & MockInstance } ```