diff options
author | Ryan McGrath <ryan@venodesigns.net> | 2009-12-18 01:08:10 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2009-12-18 14:59:33 +0100 |
commit | 164ce76e941490e82230e905e719b5b556b669f5 (patch) | |
tree | 9263d4244ef1a55e59000b94b5093367955e7ef1 | |
parent | 89a3fa93a031dca3d9f1cef33f796b9194a2db98 (diff) | |
download | node-new-164ce76e941490e82230e905e719b5b556b669f5.tar.gz |
Added in API documentation concerning the (seemingly undocumented) process.chdir() method, complementary to process.cwd()
-rw-r--r-- | doc/api.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/api.txt b/doc/api.txt index 527f703b4f..c5a4d1d471 100644 --- a/doc/api.txt +++ b/doc/api.txt @@ -130,6 +130,9 @@ success code 0. +process.cwd()+:: Returns the current working directory of the process. ++process.chdir(directory)+:: +Changes the current working directory of the process. + +process.umask(mask)+ :: Sets the process's file mode creation mask. Child processes inherit the mask from the parent process. |