From c719c2c05c7e498c3f7c3f82db1a65af646c43d1 Mon Sep 17 00:00:00 2001 From: Yusuf Adeyemo Date: Fri, 17 Jul 2020 19:46:58 +0100 Subject: [PATCH 1/2] Fix typo :zap: Fix typo :zap: --- docs/debugging.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/debugging.md b/docs/debugging.md index 1729cd45846..7cd4a8a3771 100644 --- a/docs/debugging.md +++ b/docs/debugging.md @@ -47,9 +47,9 @@ LogBox.ignoreAllLogs(); Unhanded JavaScript errors such as `undefined is not a function` will automatically open a full screen LogBox error with the source of the error. These errors are dismissable and minimizable so that you can see the state of your app when these errors occur, but should always be addressed. -### Syntax Erorrs +### Syntax Erorr -Syntax errors will automatically open a full screen LogBox error with the source of the syntax error. This error is not dismissable because it represents invalid JavaScript execution that must be fixed before continuing with your app. To dismiss these errors, fix the syntax error and either save to automatically dismiss (with Fast Refresh enabled) or cmd+r to reload (with Fast Refresh disabled). +Syntax error will automatically open a full screen LogBox error with the source of the syntax error. This error is not dismissable because it represents invalid JavaScript execution that must be fixed before continuing with your app. To dismiss these errors, fix the syntax error and either save to automatically dismiss (with Fast Refresh enabled) or cmd+r to reload (with Fast Refresh disabled). ## Chrome Developer Tools From dae2a3580db34a10a37464489715ce231832f759 Mon Sep 17 00:00:00 2001 From: Bartosz Kaszubowski Date: Sat, 18 Jul 2020 09:45:31 +0200 Subject: [PATCH 2/2] tweak wording --- docs/debugging.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/debugging.md b/docs/debugging.md index 7cd4a8a3771..e7b9fb6c968 100644 --- a/docs/debugging.md +++ b/docs/debugging.md @@ -47,9 +47,9 @@ LogBox.ignoreAllLogs(); Unhanded JavaScript errors such as `undefined is not a function` will automatically open a full screen LogBox error with the source of the error. These errors are dismissable and minimizable so that you can see the state of your app when these errors occur, but should always be addressed. -### Syntax Erorr +### Syntax Errors -Syntax error will automatically open a full screen LogBox error with the source of the syntax error. This error is not dismissable because it represents invalid JavaScript execution that must be fixed before continuing with your app. To dismiss these errors, fix the syntax error and either save to automatically dismiss (with Fast Refresh enabled) or cmd+r to reload (with Fast Refresh disabled). +When syntax error occurs the full screen LogBox error will automatically open with the stack trace and location of the syntax error. This error is not dismissable because it represents invalid JavaScript execution that must be fixed before continuing with your app. To dismiss these errors, fix the syntax error and either save to automatically dismiss (with Fast Refresh enabled) or cmd+r to reload (with Fast Refresh disabled). ## Chrome Developer Tools