Match the electron-quick-start repo

This commit is contained in:
Jessica Lord 2015-10-19 16:37:18 -07:00
parent 0afefe13f6
commit d09b09b744

View file

@ -130,8 +130,9 @@ Finally the `index.html` is the web page you want to show:
</head>
<body>
<h1>Hello World!</h1>
We are using Node.js <script>document.write(process.version)</script>
and Electron <script>document.write(process.versions['electron'])</script>.
We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
</body>
</html>
```