Skip to content

Commit b718e2a

Browse files
author
vakrilov
committed
Merge pull request NativeScript#61 from NativeScript/feature/mainModule-fix
Snippet fix
2 parents e04c436 + 4dad3f8 commit b718e2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

application-management.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ iOS calls UIApplication and triggers the application main event loop.
2727
*/
2828

2929
var application = require("application");
30-
application.mainModule = "app/template-settings/main-page";
30+
application.mainModule = "app/main-page";
3131
application.start();
3232
```
3333
``` TypeScript
@@ -55,7 +55,7 @@ NativeScript applications have the following life cycle events.
5555

5656
``` JavaScript
5757
var application = require("application");
58-
application.mainModule = "app/template-settings/main-page";
58+
application.mainModule = "app/main-page";
5959
application.onLaunch = function (context) {
6060
// For Android applications, the context is an android.content.Intent class.
6161
// For iOS applications, the context is undefined.

0 commit comments

Comments
 (0)