summaryrefslogtreecommitdiffhomepage
path: root/docs/cqueue_api.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/cqueue_api.md')
-rw-r--r--docs/cqueue_api.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/cqueue_api.md b/docs/cqueue_api.md
index b399a14c..96b46c64 100644
--- a/docs/cqueue_api.md
+++ b/docs/cqueue_api.md
@@ -10,7 +10,7 @@ See [std::queue](https://en.cppreference.com/w/cpp/container/queue) for a simila
#define using_cqueue(X, ctype)
```
The macro `using_cqueue()` must be instantiated in the global scope. **cqueue** uses normally
-a **clist** type as underlying implementation, given as `ctype`. `X` is a type tag name and
+a **cdeq_X** or **clist_X** type as underlying implementation, given as `ctype`. `X` is a type tag name and
will affect the names of all cqueue types and methods. E.g. declaring `using_cqueue(my, clist_my);`,
`X` should be replaced by `my` in all of the following documentation.