summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/box.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/examples/box.c')
-rw-r--r--misc/examples/box.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/examples/box.c b/misc/examples/box.c
index a9131afa..3f55e15d 100644
--- a/misc/examples/box.c
+++ b/misc/examples/box.c
@@ -29,11 +29,11 @@ void Person_drop(Person* p) {
}
#define i_type PBox
-#define i_valclass Person // "class" binds _cmp, _clone, _drop functions.
+#define i_keyclass Person // "class" binds _cmp, _clone, _drop functions.
#include <stc/cbox.h>
#define i_type Persons
-#define i_valboxed PBox // "arcbox" informs that PBox is a smart pointer.
+#define i_keyboxed PBox // "arcbox" informs that PBox is a smart pointer.
#include <stc/csset.h>
int main()