Browse Source

A few spelling fixes.

Thanks Bjarki. Closes GH-561.
v0.7.4-release
Ryan Dahl 14 years ago
parent
commit
8f23583d10
  1. 2
      doc/api/buffers.markdown
  2. 2
      doc/api/events.markdown
  3. 4
      doc/api/modules.markdown
  4. 2
      doc/api/streams.markdown

2
doc/api/buffers.markdown

@ -43,7 +43,7 @@ Allocates a new buffer containing the given `str`.
Writes `string` to the buffer at `offset` using the given encoding. Returns Writes `string` to the buffer at `offset` using the given encoding. Returns
number of octets written. If `buffer` did not contain enough space to fit number of octets written. If `buffer` did not contain enough space to fit
the entire string it will write a partial amount of the string. In the case the entire string, it will write a partial amount of the string. In the case
of `'utf8'` encoding, the method will not write partial characters. of `'utf8'` encoding, the method will not write partial characters.
Example: write a utf8 string into a buffer, then print it Example: write a utf8 string into a buffer, then print it

2
doc/api/events.markdown

@ -8,7 +8,7 @@ You can access this module by doing: `require("events");`
Typically, event names are represented by a camel-cased string, however, Typically, event names are represented by a camel-cased string, however,
there aren't any strict restrictions on that, as any string will be accepted. there aren't any strict restrictions on that, as any string will be accepted.
Functions can be then be attached to objects, to be executed when an event Functions can then be attached to objects, to be executed when an event
is emitted. These functions are called _listeners_. is emitted. These functions are called _listeners_.

4
doc/api/modules.markdown

@ -43,7 +43,7 @@ object. (Alternatively, one can use `this` instead of `exports`.) Variables
local to the module will be private. In this example the variable `PI` is local to the module will be private. In this example the variable `PI` is
private to `circle.js`. The function `puts()` comes from the module `'util'`, private to `circle.js`. The function `puts()` comes from the module `'util'`,
which is a built-in module. Modules which are not prefixed by `'./'` are which is a built-in module. Modules which are not prefixed by `'./'` are
built-in module--more about this later. built-in modules--more about this later.
### Module Resolving ### Module Resolving
@ -76,7 +76,7 @@ Additionally node will search for directories called `node_modules` starting
at the current directory (of the module calling `require`) and upwards at the current directory (of the module calling `require`) and upwards
towards the root of the package tree. towards the root of the package tree.
This feature makes it easy to have different module versions for different This feature makes it easy to have different module versions for different
environments. Imagine the situation where you have a devopment environment environments. Imagine the situation where you have a development environment
and a production environment each with a different version of the `foo` and a production environment each with a different version of the `foo`
module: `projects/x/development/node_modules/foo` and module: `projects/x/development/node_modules/foo` and
`projects/x/production/node_modules/foo`. `projects/x/production/node_modules/foo`.

2
doc/api/streams.markdown

@ -33,7 +33,7 @@ Emitted if there was an error receiving data.
`function () { }` `function () { }`
Emitted when the underlying file descriptor has be closed. Not all streams Emitted when the underlying file descriptor has been closed. Not all streams
will emit this. (For example, an incoming HTTP request will not emit will emit this. (For example, an incoming HTTP request will not emit
`'close'`.) `'close'`.)

Loading…
Cancel
Save