summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClyde Semeleer <clyde@semeleer.eu>2014-03-05 07:08:10 -0800
committerClyde Semeleer <clyde@semeleer.eu>2014-03-05 07:08:10 -0800
commit562beb47dc21deadc3def67f08e439b753787d82 (patch)
tree9abf6fd6abea9cbd37da55eb04ba6c9f4d67d2b6
parent415cd63d20ece5351f877f33754b6ca168d69e38 (diff)
minor update to loading extensions doc
-rw-r--r--documentation/install.html2
-rw-r--r--documentation/loading-extensions.html6
2 files changed, 3 insertions, 5 deletions
diff --git a/documentation/install.html b/documentation/install.html
index e97670c..e01a4a8 100644
--- a/documentation/install.html
+++ b/documentation/install.html
@@ -53,7 +53,7 @@
<p>
Installation begins with downloading the source code. You can either
download the latest release from our
- <a href="http://www.php-cpp.com/download">downloads</a> page, or get the
+ <a href="http://www.php-cpp.com/download">download</a> page, or get the
latest bleeding edge work-in-progress version from
<a href="https://github.com/CopernicaMarketingSoftware/PHP-CPP">GitHub</a>.
</p>
diff --git a/documentation/loading-extensions.html b/documentation/loading-extensions.html
index 2fb723d..e126743 100644
--- a/documentation/loading-extensions.html
+++ b/documentation/loading-extensions.html
@@ -62,8 +62,7 @@ php -i|grep extension_dir
class that can be used instead.
</p>
<p>
-<pre class="language-c++"><code>
-#include &lt;phpcpp.h&gt;
+<pre class="language-c++"><code>#include &lt;phpcpp.h&gt;
/**
* tell the compiler that the get_module is a pure C function
@@ -88,8 +87,7 @@ extern "C" {
// return the extension
return myExtension;
}
-}
-</code></pre>
+}</code></pre>
</p>
<p>
In the example above you see a very straightforward implementation of the