summaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/clist_api.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/clist_api.md b/docs/clist_api.md
index 26342fef..8bb48b37 100644
--- a/docs/clist_api.md
+++ b/docs/clist_api.md
@@ -1,4 +1,4 @@
-# Container clist: Singly Linked List
+# Container [clist](../stc/clist.h): Singly Linked List
This is similar to c++ *std::forward_list*, but can do both *push_front()* and *push_back()* as well as *pop_front()*.
Implemented as a circular singly linked list. Also supports various *splice* functions and *merge sort*.