summaryrefslogtreecommitdiff
path: root/documentation/bubblesort.html
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-13 10:50:56 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-13 10:50:56 +0100
commitd724e346b28df9907a2ec115d20416944ea10d8a (patch)
treed9ff51e81c8ca5c77e53865a190eac999cc94556 /documentation/bubblesort.html
parent3bb0e31416994b0a36b784c8278b1c5f33999b1d (diff)
added id to all h2 tags to make it possible to link to specific sections, update documentation about serializable, fixed compile error for serialize implementation
Diffstat (limited to 'documentation/bubblesort.html')
-rw-r--r--documentation/bubblesort.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/bubblesort.html b/documentation/bubblesort.html
index 2c08888..ad347d5 100644
--- a/documentation/bubblesort.html
+++ b/documentation/bubblesort.html
@@ -137,7 +137,7 @@ extern "C" {
Zend engine about the extension, so that the "native_bubblesort" function is
accessible for PHP scripts.
</p>
-<h2>We start with a silly question</h2>
+<h2 id="silly-question">We start with a silly question</h2>
<p>
How would the native bubblesort function compare to the built-in sort()
function of PHP? This is a silly question. Bubblesort is an extremely
@@ -192,7 +192,7 @@ Native: 0.79793095588684 seconds
Scripted: 8.9202060699463 seconds
</pre>
</p>
-<h2>Summary</h2>
+<h2 id="summary">Summary</h2>
<p>
C++ is faster - much faster - than code in PHP, even for very simple scripts.
The source code for an extension written in C++ is almost identical to the