Adjust process.compile documentation

pull/5370/head
Ryan Dahl 2010-03-11 10:27:20 -08:00
parent 976983960d
commit 358b7516c7
1 changed files with 3 additions and 3 deletions

View File

@ -154,9 +154,9 @@ Send a signal to a process. +pid+ is the process id and +signal+ is the
signal to send; for example, "SIGINT" or "SIGUSR1". See kill(2) for more signal to send; for example, "SIGINT" or "SIGUSR1". See kill(2) for more
information. information.
+process.compile(source, scriptOrigin)+:: +process.compile(code, scriptOrigin)+::
Just like +eval()+ except that you can specify a +scriptOrigin+ for better Similar to +eval()+ except that you can specify a +scriptOrigin+ for better
error reporting. error reporting and the +code+ cannot see the local scope.
+process.mixin([deep], target, object1, [objectN])+ :: +process.mixin([deep], target, object1, [objectN])+ ::
Extend one object with one or more others, returning the modified object. Extend one object with one or more others, returning the modified object.