diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/cset_api.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/cset_api.md b/docs/cset_api.md index a1303597..06c3f552 100644 --- a/docs/cset_api.md +++ b/docs/cset_api.md @@ -93,11 +93,11 @@ using_cset_str(); int main ()
{
- cset_str first = cset_inits; // empty
+ cset_str first = cset_str_init(); // empty
c_init (cset_str, second, {"red", "green", "blue"});
c_init (cset_str, third, {"orange", "pink", "yellow"});
- cset_str fourth = cset_inits;
+ cset_str fourth = cset_str_init();
cset_str_emplace(&fourth, "potatoes");
cset_str_emplace(&fourth, "milk");
cset_str_emplace(&fourth, "flour");
|
