From f40e1a537ef692bb8ef8364b3b5db2a3428f3e57 Mon Sep 17 00:00:00 2001 From: Pratham Jagga <30550632+prathamjagga@users.noreply.github.com> Date: Mon, 10 Apr 2023 09:16:19 +0530 Subject: [PATCH] Fixed typo in example-application/start.js At the last of the file, it logs on the console: "App occured during startup" but it should be "Error occured during startup". --- example-application/start.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example-application/start.js b/example-application/start.js index 6faf7241..6dcb9f3a 100644 --- a/example-application/start.js +++ b/example-application/start.js @@ -11,5 +11,5 @@ start() console.log('The app has started successfully'); }) .catch((error) => { - console.log('App occured during startup', error); + console.log('Error occured during startup', error); });