summaryrefslogtreecommitdiff
path: root/documentation/bubblesort.html
diff options
context:
space:
mode:
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