diff --git a/docs/rules/no-unsafe-finally.md b/docs/rules/no-unsafe-finally.md index 1783e501fc80..fb3bb1ea5beb 100644 --- a/docs/rules/no-unsafe-finally.md +++ b/docs/rules/no-unsafe-finally.md @@ -49,7 +49,7 @@ JavaScript suspends the control flow statements of `try` and `catch` blocks unti // We expect this function to return 0 from try block. (() => { label: try { - return 0; // 1 is returned but suspended until finally block ends + return 0; // 0 is returned but suspended until finally block ends } finally { break label; // It breaks out the try-finally block, before 0 is returned. }