From 95c4cb18872eadd552c5ddb400f5a2da8df1e992 Mon Sep 17 00:00:00 2001 From: Sergio Santoro Date: Tue, 9 Oct 2018 20:20:23 +0200 Subject: [PATCH] Docs: Fix typo for no-unsafe-finally (#10945) --- docs/rules/no-unsafe-finally.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/no-unsafe-finally.md b/docs/rules/no-unsafe-finally.md index 1783e501fc8..fb3bb1ea5be 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. }