diff options
| author | Tyge Lovset <[email protected]> | 2021-11-03 23:15:59 +0100 |
|---|---|---|
| committer | Tyge Lovset <[email protected]> | 2021-11-03 23:15:59 +0100 |
| commit | d25619e0d6ac9970c23610326285d549c266c7c8 (patch) | |
| tree | 65130479d28acaea792f5ed01c5aa79ebed42d1d /docs/csset_api.md | |
| parent | 85a7ff53750a55fee9a45083abb2f6daa5b19164 (diff) | |
| download | STC-modified-d25619e0d6ac9970c23610326285d549c266c7c8.tar.gz STC-modified-d25619e0d6ac9970c23610326285d549c266c7c8.zip | |
Renamed cnt_X_getmut() to cnt_X_get_mut().
Diffstat (limited to 'docs/csset_api.md')
| -rw-r--r-- | docs/csset_api.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/csset_api.md b/docs/csset_api.md index 9034f78f..501473a6 100644 --- a/docs/csset_api.md +++ b/docs/csset_api.md @@ -34,7 +34,7 @@ size_t csset_X_size(csset_X set); bool csset_X_empty(csset_X set);
const csset_X_value* csset_X_get(const csset_X* self, i_keyraw rkey); // const get
-csset_X_value* csset_X_getmut(csset_X* self, i_keyraw rkey); // return NULL if not found
+csset_X_value* csset_X_get_mut(csset_X* self, i_keyraw rkey); // return NULL if not found
bool csset_X_contains(const csset_X* self, i_keyraw rkey);
csset_X_iter csset_X_find(const csset_X* self, i_keyraw rkey);
csset_X_value* csset_X_find_it(const csset_X* self, i_keyraw rkey, csset_X_iter* out); // return NULL if not found
|
