Skip to content

Commit 888eff8

Browse files
committed
Deploying to gh-pages from @ 93565da 🚀
1 parent 7ca9e2e commit 888eff8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_sources/php7/zvals/basic_structure.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Secondly, ``zend_long`` is **not** the same as ``long``, because it abstracts aw
6565
is always 4 bytes large on 32-bit platorms and 8 bytes large on 64-bit platforms, even if the ``long`` type may have
6666
a different size.
6767

68-
For this reason, is is important to use macros written specifically for use with ``zend_long``, such as
68+
For this reason, it is important to use macros written specifically for use with ``zend_long``, such as
6969
``SIZEOF_ZEND_LONG`` or ``ZEND_LONG_MAX``. You can find more relevant macros in
7070
`Zend/zend_long.h <https://github.com/php/php-src/blob/1a0fa12753931dba9908161df0f63feb6d0ba025/Zend/zend_long.h>`_.
7171

php7/zvals/basic_structure.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ <h2>Types and values<a class="headerlink" href="#types-and-values" title="Link t
9191
Secondly, <code class="docutils literal notranslate"><span class="pre">zend_long</span></code> is <strong>not</strong> the same as <code class="docutils literal notranslate"><span class="pre">long</span></code>, because it abstracts away platform differences. <code class="docutils literal notranslate"><span class="pre">zend_long</span></code>
9292
is always 4 bytes large on 32-bit platorms and 8 bytes large on 64-bit platforms, even if the <code class="docutils literal notranslate"><span class="pre">long</span></code> type may have
9393
a different size.</p>
94-
<p>For this reason, is is important to use macros written specifically for use with <code class="docutils literal notranslate"><span class="pre">zend_long</span></code>, such as
94+
<p>For this reason, it is important to use macros written specifically for use with <code class="docutils literal notranslate"><span class="pre">zend_long</span></code>, such as
9595
<code class="docutils literal notranslate"><span class="pre">SIZEOF_ZEND_LONG</span></code> or <code class="docutils literal notranslate"><span class="pre">ZEND_LONG_MAX</span></code>. You can find more relevant macros in
9696
<a class="reference external" href="https://github.com/php/php-src/blob/1a0fa12753931dba9908161df0f63feb6d0ba025/Zend/zend_long.h">Zend/zend_long.h</a>.</p>
9797
<p>The <code class="docutils literal notranslate"><span class="pre">double</span></code> type used to store floating point numbers is an 8-byte value following the IEEE-754 specification.

0 commit comments

Comments
 (0)