From 38287002d09722c9942e9e7c70f3132d782b3543 Mon Sep 17 00:00:00 2001 From: Sergio Santoro Date: Tue, 9 Oct 2018 13:52:52 +0200 Subject: [PATCH] Fix typo for no-unsafe-finally --- 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 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. }