From 781dcc69b375f349b7bae5d243619f2f247087c9 Mon Sep 17 00:00:00 2001 From: Bartosz Wojtkowiak Date: Sun, 13 Nov 2016 23:26:52 +0100 Subject: [PATCH] fix misleading comment in the scaffold --- scaffold/modules/example/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scaffold/modules/example/index.js b/scaffold/modules/example/index.js index 80edf4a2..1764aa26 100644 --- a/scaffold/modules/example/index.js +++ b/scaffold/modules/example/index.js @@ -29,7 +29,7 @@ export default class Example { this.eventsBus = eventsBus; // Never do time consuming or blocking things directly in the constructor. - // Instead hook to `afterLoading` or `beforeDesktopJsLoad` events. + // Instead hook to 'beforeDesktopJsLoad`, `desktopLoaded` or `afterInitialization` events. // This will also ensure plugins providing things like splash screens will be able // to start as quickly as possible. this.eventsBus.on('desktopLoaded', () => {