diff --git a/reference/mongodb/architecture.xml b/reference/mongodb/architecture.xml
index ee0c184fe9..6dcaf2c89e 100644
--- a/reference/mongodb/architecture.xml
+++ b/reference/mongodb/architecture.xml
@@ -143,7 +143,7 @@
All versions of the driver since 1.2.0 persist the
- libmongoc client object in
+ libmongoc client object in
the PHP worker process, which allows it to re-use database connections,
authentication states, and topology information across
multiple requests.
@@ -153,7 +153,7 @@
When MongoDB\Driver\Manager::__construct is
invoked, a hash is created from its arguments (i.e. URI string and array
options). The driver will attempt to find a previously persisted
- libmongoc client object for
+ libmongoc client object for
that hash. If an existing client cannot be found for the hash, a new client
will be created (and persisted for future use).
@@ -192,7 +192,7 @@ foreach ($managers as $manager) {
The first two Manager objects will share the same
- libmongoc client since
+ libmongoc client since
their constructor arguments are identical. The third and fourth objects will
each use their own client. In total, three clients will be created and the
PHP worker executing this script will open two connections to
@@ -218,7 +218,7 @@ foreach ($managers as $manager) {
Versions of the PHP driver before 1.2.0 utilize PHP's Streams API for
database connections, using an API within
- libmongoc to designate
+ libmongoc to designate
custom handlers for socket communication; however, a new libmongoc client is
created for each MongoDB\Driver\Manager. As a result,
the driver persists individual database connections but not authentication
@@ -257,7 +257,7 @@ foreach ($managers as $manager) {
Versions of the HHVM driver before 1.2.0 do not persist sockets,
authentication state, or topology information. Socket communication uses
- libmongoc entirely.
+ libmongoc entirely.
diff --git a/reference/mongodb/configure.xml b/reference/mongodb/configure.xml
index 159f63f869..1ec6124881 100644
--- a/reference/mongodb/configure.xml
+++ b/reference/mongodb/configure.xml
@@ -26,8 +26,8 @@ $ sudo pecl install mongodb
Installing the driver via PECL will use bundled versions of
libbson and
- libmongoc and rely on PHP to
- find OpenSSL (i.e. PHP_SETUP_OPENSSL). If the build
+ libmongoc and rely on PHP
+ to find OpenSSL (i.e. PHP_SETUP_OPENSSL). If the build
process fails to find OpenSSL, check that the OpenSSL development package
(e.g. libssl-dev) and
pkg-config are both
@@ -117,8 +117,8 @@ $ sudo make install
By default, the driver will use bundled versions of
libbson and
- libmongoc and rely on PHP to
- find OpenSSL (i.e. PHP_SETUP_OPENSSL). If the build
+ libmongoc and rely on PHP
+ to find OpenSSL (i.e. PHP_SETUP_OPENSSL). If the build
process fails to find OpenSSL, check that the OpenSSL development package
(e.g. libssl-dev) and
pkg-config are both
diff --git a/reference/mongodb/setup.xml b/reference/mongodb/setup.xml
index d4cf17b563..a80f984b0f 100644
--- a/reference/mongodb/setup.xml
+++ b/reference/mongodb/setup.xml
@@ -14,7 +14,7 @@
The driver requires libbson
- and libmongoc, and will use
+ and libmongoc, and will use
bundled versions of both libraries by default.