doc: updated JavaScript casing where relevant

Fixes #3326.
pull/24503/head
Jeroen Janssen 2012-05-26 12:25:44 +02:00 committed by koichik
parent 578f69bcf4
commit 1fc2c3823c
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ libraries.
## Hello world
To get started let's make a small Addon which is the C++ equivalent of
the following Javascript code:
the following JavaScript code:
exports.hello = function() { return 'world'; };

View File

@ -2,7 +2,7 @@
Stability: 3 - Stable
Pure Javascript is Unicode friendly but not nice to binary data. When
Pure JavaScript is Unicode friendly but not nice to binary data. When
dealing with TCP streams or the file system, it's necessary to handle octet
streams. Node has several strategies for manipulating, creating, and
consuming octet streams.