Browse Source

Merge pull request #3150 from atom/jl-upadate-qs

Update Quick Start HTML
Cheng Zhao 9 years ago
parent
commit
4005e65e28
1 changed files with 3 additions and 2 deletions
  1. 3 2
      docs/tutorial/quick-start.md

+ 3 - 2
docs/tutorial/quick-start.md

@@ -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>
 ```