From 9d8ff0b5b44375e78e0bd38a28f9c4995827cd34 Mon Sep 17 00:00:00 2001 From: Richard Mena <47158790+richardmf9425@users.noreply.github.com> Date: Fri, 17 Jul 2020 22:19:59 -0400 Subject: [PATCH] fix typo Erorrs -> Errors --- docs/debugging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/debugging.md b/docs/debugging.md index 1729cd45846..40f0d43f9ff 100644 --- a/docs/debugging.md +++ b/docs/debugging.md @@ -47,7 +47,7 @@ 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 Errors 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).