From 00b93db2dbb4d0a57b1b8d7921a79e02c1485ee9 Mon Sep 17 00:00:00 2001 From: Karl Horky Date: Sun, 1 Sep 2019 20:40:50 +0200 Subject: [PATCH] docs: Fix casing of JavaScript, improve grammar --- src/documentation/0005-node-difference-browser/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/documentation/0005-node-difference-browser/index.md b/src/documentation/0005-node-difference-browser/index.md index 8d91b3acae..f4792019a1 100644 --- a/src/documentation/0005-node-difference-browser/index.md +++ b/src/documentation/0005-node-difference-browser/index.md @@ -1,7 +1,7 @@ --- title: Differences between Node.js and the Browser description: 'How writing JavaScript application in Node.js differs from programming for the Web inside the browser' -authors: flaviocopes, ollelauribostrom, MylesBorins, fhemberger, LaRuaNa, ahmadawais +authors: flaviocopes, ollelauribostrom, MylesBorins, fhemberger, LaRuaNa, ahmadawais, karlhorky section: Quick Start --- @@ -11,7 +11,7 @@ Building apps that run in the browser is a completely different thing than build Despite the fact that it's always JavaScript, there are some key differences that make the experience radically different. -As a frontend developer who extensively uses Javascript, Node.js apps brings with it, a huge advantage - the comfort of programming everything, the frontend and the backend, in a single language +From the perspective of a frontend developer who extensively uses JavaScript, Node.js apps bring with them a huge advantage: the comfort of programming everything - the frontend and the backend - in a single language. You have a huge opportunity because we know how hard it is to fully, deeply learn a programming language, and by using the same language to perform all your work on the web - both on the client and on the server, you're in a unique position of advantage.