doc: updated JavaScript casing where relevant
authorJeroen Janssen <jeroen.janssen@gmail.com>
Sat, 26 May 2012 10:25:44 +0000 (12:25 +0200)
committerkoichik <koichik@improvement.jp>
Sat, 26 May 2012 10:34:13 +0000 (19:34 +0900)
Fixes #3326.

doc/api/addons.markdown
doc/api/buffer.markdown

index df42815fbc7c613ed21d41a566497e95a22f33e6..b414943c6afbfdf1c87d8ba2a47db6df1e178dff 100644 (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'; };
 
index ba1c765a48317abf0ab02c268027291c7f345a81..82a36eedc6fc06db639ad8af7b02d8b9827cd095 100644 (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.