OSDN Git Service

Typo and linguistic fixes.
authorJames Teh <jamie@jantrid.net>
Tue, 1 Mar 2011 11:00:48 +0000 (21:00 +1000)
committerJames Teh <jamie@jantrid.net>
Tue, 1 Mar 2011 11:00:48 +0000 (21:00 +1000)
developerGuide.t2t
extras/controllerClient/readme.html

index 4749ecf..7681b8e 100644 (file)
@@ -7,7 +7,7 @@ NVDA NVDA_VERSION Developer Guide
 %%toc\r
 \r
 + Introduction +\r
-This guide provides information for new developers wishing to developing components for NVDA.\r
+This guide provides information for new developers wishing to develop components for NVDA.\r
 Note that this is only an introduction.\r
 Developers should consult the code documentation for a complete reference.\r
 \r
index 0a1665e..708326d 100644 (file)
@@ -6,20 +6,20 @@
 <h1>NVDA Controller Client API 1.0 Documentation</h1>\r
 <h2>Introduction</h2>\r
 <p>\r
-This client API allows an application to  communicate to NVDA, in order to do such things as speak text or braille a message.\r
+This client API allows an application to  communicate with NVDA, in order to do such things as speak text or braille a message.\r
 </p>\r
 <p>\r
-The client API is implemented as a dll (dynamic link library). The functions in this dll can be called from any programming language that supports looking up and calling of any symbol in a dll (such as ctypes in Python), or by linking to it, for languages like C and C++.\r
+The client API is implemented as a dll (dynamic link library). The functions in this dll can be called from any programming language that supports looking up and calling of any symbol in a dll (such as ctypes in Python), or by linking to it for languages like C and C++.\r
 </p>\r
-<h2>What is included?</h2>\r
+<h2>What is Included?</h2>\r
 <p>\r
-Note: The header and library files are built along with nvdaHelper. If you want to build them yourself, please see source\nvdaHelper\building.txt in the NVDA source distribution for instructions. Alternatively, you can find a pre-built package at <a href="http://www.nvda-project.org/nvdaControllerClient/">http://www.nvda-project.org/nvdaControllerClient/</a>.\r
+Note: The header and library files are built along with nvdaHelper. If you want to build them yourself, please see readme.txt in the NVDA source distribution for instructions. Alternatively, you can find a pre-built package at <a href="http://www.nvda-project.org/nvdaControllerClient/">http://www.nvda-project.org/nvdaControllerClient/</a>.\r
 </p>\r
 <p>\r
-Versions of the libraries and headers are supplied for both x86 and x64 applications. Therefore they have been split in to x86 and x64 directories respectivly.\r
+Versions of the libraries and headers are supplied for both x86 and x64 applications. They have been split in to x86 and x64 directories, respectivly.\r
 </p>\r
 <p>\r
-Each directory contains the following files [Where * denotes 32 for x86 and 64 for x64]:\r
+Each directory contains the following files, where * denotes 32 for x86 and 64 for x64:\r
 </p> \r
 <ul>\r
 <li>nvdaControllerClient*.dll: the dll that contains all the functions. You can distribute this dll with your application.</li>\r
@@ -33,16 +33,16 @@ The x86 directory also contains two example files:
 <li>example_python.py: an example Python program that uses the NVDA controller client API.</li>\r
 <li>example_c.c: The source code for an example C program that uses the NVDA controller client API.</li>\r
 </ul>\r
-<h2>Available functions</h2>\r
+<h2>Available Functions</h2>\r
 <p>\r
-All functions in this dll return 0 on success and a non-0 code on failier. Failier could be due to not being able to communicate with NVDA, or perhaps an incorrect usage of the function. The error codes that these functions return are always standard Windows error codes.\r
+All functions in this dll return 0 on success and a non-0 code on failure. Failure could be due to not being able to communicate with NVDA or incorrect usage of the function. The error codes that these functions return are always standard Windows error codes.\r
 </p>\r
 <p>\r
-For definitions of all the functions available, please look at nvdaController.h. The functions are documented with comments.\r
+For definitions of all the functions available, please see nvdaController.h. The functions are documented with comments.\r
 </p>\r
 <h2>License</h2>\r
 <p>\r
-The NVDA Controller Client API is licensed under the GNU Lesser General Public License (LGPL) version 2.1. In simple terms, this means you can use this library  in any application, however if you modify the library in any way you must contribute the changes back to the community under the same license.\r
+The NVDA Controller Client API is licensed under the GNU Lesser General Public License (LGPL), version 2.1. In simple terms, this means you can use this library  in any application, but if you modify the library in any way, you must contribute the changes back to the community under the same license.\r
 </p>\r
 <p>\r
 Please see license.txt in this directory for more details.\r