aboutsummaryrefslogtreecommitdiffstats
path: root/erts/doc/src/driver.xml
diff options
context:
space:
mode:
authorMatthias Lang <[email protected]>2010-03-15 07:46:50 +0100
committerBjörn Gustavsson <[email protected]>2010-03-16 10:55:56 +0100
commitbfd9a4f396d144199cb57376e6928701cf0dc931 (patch)
tree246a66e1bf48d1a2c9838390a68d87d4f155a74f /erts/doc/src/driver.xml
parent76ff26a3c209408c962a6115bf3426b2a55bd68a (diff)
downloadotp-bfd9a4f396d144199cb57376e6928701cf0dc931.tar.gz
otp-bfd9a4f396d144199cb57376e6928701cf0dc931.tar.bz2
otp-bfd9a4f396d144199cb57376e6928701cf0dc931.zip
Change all incorrect occurrences of it's to its
The documentation (*.xml) in the otp tree has a common grammatical problem, "it's" and "its" are often interchanged. That is annoying for some readers. This commit consists entirely of "it's" -> "its" changes. I went through every .xml file in the tree. If there are any remaining bugs of this type, it's because I missed them, not because I didn't look.
Diffstat (limited to 'erts/doc/src/driver.xml')
-rw-r--r--erts/doc/src/driver.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/doc/src/driver.xml b/erts/doc/src/driver.xml
index 12c79aee90..006a6160de 100644
--- a/erts/doc/src/driver.xml
+++ b/erts/doc/src/driver.xml
@@ -413,7 +413,7 @@ select(Port, Query) ->
<title>Sample asynchronous driver</title>
<p>Sometimes database queries can take long time to
complete, in our <c><![CDATA[pg_sync]]></c> driver, the emulator
- halts while the driver is doing it's job. This is
+ halts while the driver is doing its job. This is
often not acceptable, since no other Erlang processes
gets a chance to do anything. To improve on our
postgres driver, we reimplement it using the asynchronous