From e3356157d5910d9196e8968c20d4c9a46c4de910 Mon Sep 17 00:00:00 2001 From: Christian Llontop Date: Tue, 10 Dec 2024 14:09:46 -0500 Subject: [PATCH] =?UTF-8?q?docs:=20fix=20comment=20in=20README=20for=20Hoo?= =?UTF-8?q?k=E2=80=99s=20after=20method=20(#1103)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## This PR - Fixes incorrect comment in the README for the Hook implementation's `after` method. Signed-off-by: Christian Llontop --- packages/server/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server/README.md b/packages/server/README.md index dcf04d62e..8b6cf8dc1 100644 --- a/packages/server/README.md +++ b/packages/server/README.md @@ -383,7 +383,7 @@ import type { Hook, HookContext, EvaluationDetails, FlagValue } from "@openfeatu export class MyHook implements Hook { after(hookContext: HookContext, evaluationDetails: EvaluationDetails) { - // code that runs when there's an error during a flag evaluation + // code that runs after flag values are successfully resolved from the provider } } ```