summaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/cstr_api.md2
-rw-r--r--docs/cvec_api.md3
2 files changed, 2 insertions, 3 deletions
diff --git a/docs/cstr_api.md b/docs/cstr_api.md
index d3c86532..6624e779 100644
--- a/docs/cstr_api.md
+++ b/docs/cstr_api.md
@@ -68,7 +68,7 @@ These returns properties of a string. `5-6)` returns reference, ie. pointer to t
4) void cstr_pop_back(cstr_t* self);
5) void cstr_insert(cstr_t* self, size_t pos, const char* str);
6) void cstr_insert_n(cstr_t* self, size_t pos, const char* str, size_t n);
- 7) void cstr_erase(cstr_t* self, size_t pos, size_t n);
+ 7) void cstr_erase_n(cstr_t* self, size_t pos, size_t n);
8) void cstr_replace(cstr_t* self, size_t pos, size_t len, const char* str);
9) void cstr_replace_n(cstr_t* self, size_t pos, size_t len, const char* str, size_t n);
```
diff --git a/docs/cvec_api.md b/docs/cvec_api.md
index 7004acec..d109b66e 100644
--- a/docs/cvec_api.md
+++ b/docs/cvec_api.md
@@ -87,10 +87,9 @@ cvec_X_iter_t cvec_X_insert_range_p(cvec_X* self, cvec_X_value_t* pos,
const cvec_X_value_t* pfirst, const cvec_X_value_t* pfinish);
cvec_X_iter_t cvec_X_erase(cvec_X* self, cvec_X_iter_t pos);
-cvec_X_iter_t cvec_X_erase_at(cvec_X* self, size_t idx);
+cvec_X_iter_t cvec_X_erase_n(cvec_X* self, size_t idx, size_t n);
cvec_X_iter_t cvec_X_erase_range(cvec_X* self, cvec_X_iter_t first, cvec_X_iter_t finish);
cvec_X_iter_t cvec_X_erase_range_p(cvec_X* self, cvec_X_value_t* pfirst, cvec_X_value_t* pfinish);
-cvec_X_iter_t cvec_X_erase_range_i(cvec_X* self, size_t ifirst, size_t ifinish);
cvec_X_iter_t cvec_X_find(const cvec_X* self, RawValue val);
cvec_X_iter_t cvec_X_find_in_range(const cvec_X* self,