From 4e85bb921bef97a5bedb4188d0e360ec4a0b70c0 Mon Sep 17 00:00:00 2001 From: Jeremy Rose Date: Mon, 6 Mar 2023 16:24:52 -0800 Subject: [PATCH] docs: remove misleading info from will-finish-launching docs (#37514) --- docs/api/app.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/api/app.md b/docs/api/app.md index cd6eb3aab991..e29973ad52b7 100755 --- a/docs/api/app.md +++ b/docs/api/app.md @@ -23,8 +23,7 @@ The `app` object emits the following events: Emitted when the application has finished basic startup. On Windows and Linux, the `will-finish-launching` event is the same as the `ready` event; on macOS, this event represents the `applicationWillFinishLaunching` notification of -`NSApplication`. You would usually set up listeners for the `open-file` and -`open-url` events here, and start the crash reporter and auto updater. +`NSApplication`. In most cases, you should do everything in the `ready` event handler.