summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-12-31 21:38:13 +0100
committerTyge Løvset <[email protected]>2020-12-31 21:38:13 +0100
commitcb830313ed1a246f287b6d07bee86732ead121f9 (patch)
tree04d59f1df5bb5d6a6612c9923152075ac9f663f3
parentc3f38bc7304b13a4e0344a7d4825f51026dd72be (diff)
downloadSTC-modified-cb830313ed1a246f287b6d07bee86732ead121f9.tar.gz
STC-modified-cb830313ed1a246f287b6d07bee86732ead121f9.zip
Fixed links
-rw-r--r--docs/cdeq_api.md2
-rw-r--r--docs/clist_api.md2
-rw-r--r--docs/cmap_api.md2
-rw-r--r--docs/cqueue_api.md2
-rw-r--r--docs/cstack_api.md2
-rw-r--r--docs/cstr_api.md2
-rw-r--r--docs/cvec_api.md2
7 files changed, 7 insertions, 7 deletions
diff --git a/docs/cdeq_api.md b/docs/cdeq_api.md
index e3ab6e6f..55cb0085 100644
--- a/docs/cdeq_api.md
+++ b/docs/cdeq_api.md
@@ -1,4 +1,4 @@
-![Deque](docs/deque.jpg)
+![Deque](deque.jpg)
# Container [cdeq](../stc/cdeq.h): Double Ended Queue (Deque)
This describes the API of deque type **cdeq**.
diff --git a/docs/clist_api.md b/docs/clist_api.md
index dbe2431b..7e1e0ac9 100644
--- a/docs/clist_api.md
+++ b/docs/clist_api.md
@@ -1,4 +1,4 @@
-![List](docs/list.jpg)
+![List](list.jpg)
# Container [clist](../stc/clist.h): Singly Linked List
This is similar to c++ [std::forward_list](https://en.cppreference.com/w/cpp/container/forward_list), but supports both
diff --git a/docs/cmap_api.md b/docs/cmap_api.md
index 705c1324..00c097cb 100644
--- a/docs/cmap_api.md
+++ b/docs/cmap_api.md
@@ -1,4 +1,4 @@
-![Map](docs/map.jpg)
+![Map](map.jpg)
# Container [cmap](../stc/cmap.h): Unordered Map
Elements are pairs of keys and mapped values. Implemented as open hashing without tombstones. Highly customizable and fast.
diff --git a/docs/cqueue_api.md b/docs/cqueue_api.md
index 4f5aa63f..9a4a9939 100644
--- a/docs/cqueue_api.md
+++ b/docs/cqueue_api.md
@@ -1,4 +1,4 @@
-![Queue](docs/queue.jpg)
+![Queue](queue.jpg)
# Container [cqueue](../stc/cqueue.h): Queue
This describes the API of the queue type **cqueue**.
diff --git a/docs/cstack_api.md b/docs/cstack_api.md
index 20990e62..a52efe40 100644
--- a/docs/cstack_api.md
+++ b/docs/cstack_api.md
@@ -1,4 +1,4 @@
-![Stack](docs/stack.jpg)
+![Stack](stack.jpg)
# Container [cstack](../stc/cstack.h): Stack
This describes the API of the stack type **cstack**.
diff --git a/docs/cstr_api.md b/docs/cstr_api.md
index f612b664..99bd9136 100644
--- a/docs/cstr_api.md
+++ b/docs/cstr_api.md
@@ -1,4 +1,4 @@
-![String](docs/string.jpg)
+![String](string.jpg)
# Container [cstr](../stc/cstr.h): String
This describes the API of string type **cstr_t**.
diff --git a/docs/cvec_api.md b/docs/cvec_api.md
index 70e1a6c0..4ff841d6 100644
--- a/docs/cvec_api.md
+++ b/docs/cvec_api.md
@@ -1,4 +1,4 @@
-![Vector](docs/vector.jpg)
+![Vector](vector.jpg)
# Container [cvec](../stc/cvec.h): Vector
This describes the API of vector type **cvec**.