summaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/crand_api.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/crand_api.md b/docs/crand_api.md
index 03ed2f67..3f9be2db 100644
--- a/docs/crand_api.md
+++ b/docs/crand_api.md
@@ -71,7 +71,7 @@ static int compare(cmap_i_entry_t *a, cmap_i_entry_t *b) {
return c_default_compare(&a->first, &b->first);
}
// Declare vector of map entries, with comparison function.
-using_cvec(e, cmap_i_entry_t, c_default_del, compare);
+using_cvec(e, cmap_i_entry_t, compare);
int main()