From 126c2f7137f985924ca36301daa13962e6bc2779 Mon Sep 17 00:00:00 2001 From: ATeals Date: Tue, 13 Aug 2024 14:31:41 +0900 Subject: [PATCH] docs: tiny typo Remove incorrect parentheses --- content/fundamentals/execution-context.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/fundamentals/execution-context.md b/content/fundamentals/execution-context.md index 9c6c0c23ed..79b7828b7e 100644 --- a/content/fundamentals/execution-context.md +++ b/content/fundamentals/execution-context.md @@ -255,7 +255,7 @@ const roles = this.reflector.getAllAndMerge(Roles, [context.getHandler(), contex This would result in `roles` containing `['user', 'admin']`. -For both of these merge methods, you pass the metadata key as the first argument, and an array of metadata target contexts (i.e., calls to the `getHandler()` and/or `getClass())` methods) as the second argument. +For both of these merge methods, you pass the metadata key as the first argument, and an array of metadata target contexts (i.e., calls to the `getHandler()` and/or `getClass()` methods) as the second argument. #### Low-level approach