Skip to content

Commit 615a677

Browse files
committed
Merge pull request nwjs#5 from mscdex/patch-1
fix typos/wording
2 parents a3a13eb + 33ad63c commit 615a677

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Introduction
22
============
3-
This is a NodeJS module for WebKit. With this module, your Javascript code in HTML can call NodeJS functions directly. The following demo lists the current directory in the page:
3+
This is a NodeJS module for WebKit. With this module, your Javascript code in the DOM context can call NodeJS functions directly. The following demo lists the current directory on the page:
44

55
<html><head>
66
<title>testfs</title>
@@ -22,7 +22,7 @@ This is a NodeJS module for WebKit. With this module, your Javascript code in HT
2222
</body>
2323
</html>
2424

25-
From NodeJS code, you can manipulate DOM or run Javascript in DOM context as well:
25+
From NodeJS code, you can manipulate the DOM or run Javascript in the DOM context as well:
2626

2727
var nwebkit;
2828
nwebkit = require('nwebkit');
@@ -36,7 +36,7 @@ From NodeJS code, you can manipulate DOM or run Javascript in DOM context as wel
3636
Dependencies
3737
============
3838

39-
A patched version of CEF(Chromium Embedded Framework) is need to make this possible. Prebuilt binaries are available for Linux (Debian and Ubuntu), Windows and OSX.
39+
A patched version of CEF (Chromium Embedded Framework) is needed to make this possible. Prebuilt binaries are available for Linux (Debian and Ubuntu), Windows and OSX.
4040

4141
The source of Chromium is at https://github.com/rogerwang/chromium
4242

@@ -55,12 +55,12 @@ How it works
5555

5656
* Chromium's (render process) main loop is merged with libev's main loop in NodeJS, so they can run in the same process.
5757

58-
* WebKit is patched so the V8 context is merged (actually bridged) with the context from NodeJS. This makes NodeJS functions accessiable in web page.
58+
* WebKit is patched so that the V8 context is merged (actually bridged) with the context from NodeJS. This makes NodeJS functions accessible in a web page.
5959

6060
Community
6161
=========
6262

63-
Welcome to join the discussion in our mailing list:
63+
You are welcome to join the discussion on our mailing list:
6464

6565
node-webkit@googlegroups.com
6666

@@ -71,7 +71,7 @@ subscribe via node-webkit+subscribe@googlegroups.com
7171
Our vision
7272
==========
7373

74-
We believe that the async I/O framework in NodeJS and the Javascript programming language is a perfect combination for client (mobile) side applications. By bringing WebKit to NodeJS, a new way is avaliable to write applications with web technology. We'll contintue our development and support for this runtime. More platform and applications will be enabled.
74+
We believe that the async I/O framework in NodeJS and the Javascript programming language is a perfect combination for client (mobile) side applications. By bringing WebKit to NodeJS, a new way is available to write applications with web technology. We'll continue our development and support for this runtime. More platform and applications will be enabled.
7575

7676
License
7777
=======

0 commit comments

Comments
 (0)