@@ -361,15 +361,15 @@ the {+library-short+}:
361361 ^~~~~~~
362362
363363This error indicates that PHP's build system cannot find the necessary headers.
364- All PHP extensions require headers in order to compile. Those headers
364+ All PHP extensions require headers to compile. Those headers
365365must correspond to the PHP runtime for which the extension will be used.
366366The ``phpize`` command, which is invoked by ``pecl`` and ``pie``, usually ensures that the
367367extension builds with the correct headers.
368368
369369If you install a PHP runtime, the corresponding headers are not always automatically
370370available. On many Linux distributions, headers are often published under a
371371separate ``php-dev`` or ``php-devel`` package. On macOS, the default PHP runtime
372- does not include headers. Users typically need to install PHP and its headers by using
372+ does not include headers. Users typically must install PHP and its headers by using
373373`Homebrew <https://brew.sh/>`__.
374374
375375Multiple PHP Runtimes Installed
@@ -390,7 +390,7 @@ which INI files have been loaded by PHP.
390390
391391To debug issues when the extension is not loaded, you can use the
392392``detect-extension`` script provided in the tools directory. You can run this
393- script from the CLI or include it in a script accessible to your web server.
393+ script from the CLI or include it in a script available to your web server.
394394The tool finds potential issues and installation instructions for your
395395system. If you installed the library by using Composer, you can call the
396396script from the vendor directory as shown in the following code:
@@ -400,7 +400,7 @@ script from the vendor directory as shown in the following code:
400400 php vendor/mongodb/mongodb/tools/detect-extension.php
401401
402402If you want to check configuration for a web server SAPI, include the file in
403- a script accessible from the web server and open it in your browser. Ensure that you
403+ a script available to the web server and open it in your browser. Ensure that you
404404wrap the script in ``<pre>`` tags to properly format its output as shown in the following code:
405405
406406.. code-block:: php
0 commit comments