From 3a74ec3112fad225267a15c3cb0941934716f796 Mon Sep 17 00:00:00 2001 From: Rauno Viskus Date: Wed, 2 Jun 2021 18:48:32 +0300 Subject: [PATCH] docs: update js docs according to the new signature --- src/context/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context/types.ts b/src/context/types.ts index 622b1918..19ae6d9d 100644 --- a/src/context/types.ts +++ b/src/context/types.ts @@ -62,8 +62,8 @@ export interface ContextManager { /** * Bind an object as the current context (or a specific one) - * @param target Any object to which a context need to be set * @param [context] Optionally specify the context which you want to assign + * @param target Any object to which a context need to be set */ bind(context: Context, target: T): T;