]> mj.ucw.cz Git - libucw.git/commitdiff
Doc: Fixed a typo
authorMartin Mares <mj@ucw.cz>
Tue, 26 Feb 2013 12:37:59 +0000 (13:37 +0100)
committerMartin Mares <mj@ucw.cz>
Tue, 26 Feb 2013 12:37:59 +0000 (13:37 +0100)
Thanks to Martina Balintova who spotted it.

ucw/doc/sort.txt

index dfc89e0313a119ec2438b9eb2e2b613b2d7f1331..5d3eaef0196f0a0e74dbfdf0563b8334a7dea898 100644 (file)
@@ -96,7 +96,7 @@ to sort them by the strings.
   #define ASORT_ELT(i) ((i % 2 ? even_array : odd_array)[i / 2])
   #define ASORT_LT(x, y) (strcmp((x).string, (y).string) < 0)
   #define ASORT_EXTRA_ARGS , struct elem *odd_array, struct elem *even_array
-  #include <ucw/sorter/sorter/array-simple.h>
+  #include <ucw/sorter/array-simple.h>
 
 Now we got a complicated_sort(uns array_size, struct elem *odd_array,
 struct *even_array) function to perform our sorting.