summaryrefslogtreecommitdiff
path: root/documentation/loading-extensions.html
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 /documentation/loading-extensions.html
parent415cd63d20ece5351f877f33754b6ca168d69e38 (diff)
minor update to loading extensions doc
Diffstat (limited to 'documentation/loading-extensions.html')
-rw-r--r--documentation/loading-extensions.html6
1 files changed, 2 insertions, 4 deletions
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