doc: correct `it's` to `its` in process
authorCharmander <~@charmander.me>
Fri, 13 Feb 2015 21:25:29 +0000 (13:25 -0800)
committerJeremiah Senkpiel <fishrock123@rocketmail.com>
Fri, 13 Feb 2015 21:36:40 +0000 (16:36 -0500)
"This event is emitted when io.js empties its event loop..."

PR-URL: https://github.com/iojs/io.js/pull/837
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
doc/api/process.markdown

index e6fc20c..5787287 100644 (file)
@@ -72,7 +72,7 @@ Example of listening for `exit`:
 
 ## Event: 'beforeExit'
 
-This event is emitted when io.js empties it's event loop and has nothing else to
+This event is emitted when io.js empties its event loop and has nothing else to
 schedule. Normally, io.js exits when there is no work scheduled, but a listener
 for 'beforeExit' can make asynchronous calls, and cause io.js to continue.