summaryrefslogtreecommitdiff
path: root/gee
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2017-09-06 08:49:53 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2017-09-06 12:20:27 +0200
commit4c7ab04a8a25e814f9a77553a5f1dc43805aec62 (patch)
tree580a10581a33358261c887648d2f63b446130ed5 /gee
parent09bbbfb62654f4c94b587656c3f3bc278effdd42 (diff)
downloadvala-4c7ab04a8a25e814f9a77553a5f1dc43805aec62.tar.gz
docs: Fix syntax of several documentation blocks
Diffstat (limited to 'gee')
-rw-r--r--gee/timsort.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/gee/timsort.vala b/gee/timsort.vala
index 58c4d08e8..e8efa2330 100644
--- a/gee/timsort.vala
+++ b/gee/timsort.vala
@@ -31,10 +31,10 @@
*
* This implementation was adapted from Tim Peters's list sort for Python,
* which is described in detail here:
- * [[http://svn.python.org/projects/python/trunk/Objects/listsort.txt]]
+ * [[http://svn.python.org/projects/python/trunk/Objects/listsort.txt]]
*
* Tim's C code may be found here:
- * [[http://svn.python.org/projects/python/trunk/Objects/listobject.c]]
+ * [[http://svn.python.org/projects/python/trunk/Objects/listobject.c]]
*
* The underlying techniques are described in this paper (and may have even
* earlier origins):