Remove reference to C++ EventEmitter in docs
authorRyan Dahl <ry@tinyclouds.org>
Wed, 12 May 2010 19:17:45 +0000 (12:17 -0700)
committerRyan Dahl <ry@tinyclouds.org>
Wed, 12 May 2010 19:17:53 +0000 (12:17 -0700)
I prefer ppl to use ObjectWrap

doc/api.markdown

index 27c7ed6..72d2994 100644 (file)
@@ -2935,14 +2935,14 @@ knowledge of several libraries:
    `src/file.cc` so you will probably not need to use it. If you do need it,
    look at the header file `deps/libeio/eio.h`.
 
- - Internal Node libraries. Most importantly is the `node::EventEmitter`
-   class which you will likely want to derive from. 
+ - Internal Node libraries. Most importantly is the `node::ObjectWrap`
+   class which you will likely want to derive from.
 
- - Others. Look in `deps/` for what else is available. 
+ - Others. Look in `deps/` for what else is available.
 
 Node statically compiles all its dependencies into the executable. When
 compiling your module, you don't need to worry about linking to any of these
-libraries. 
+libraries.
 
 To get started let's make a small Addon which does the following except in
 C++:
@@ -2990,7 +2990,7 @@ provided for the ease of users.
 
 All Node addons must export a function called `init` with this signature:
 
-    extern 'C' void init (Handle<Object> target) 
+    extern 'C' void init (Handle<Object> target)
 
 For the moment, that is all the documentation on addons. Please see
 <http://github.com/ry/node_postgres> for a real example.