diff options
author | Mikael Djurfeldt <mikael@djurfeldt.com> | 2021-04-04 20:16:58 +0200 |
---|---|---|
committer | Mikael Djurfeldt <mikael@djurfeldt.com> | 2021-04-04 20:16:58 +0200 |
commit | 88e703084567eb99238a3be6ba4285d87a25eeae (patch) | |
tree | 8376589dbcfdfb017a30ca562d85148941d2f58c /examples/box/box.c | |
parent | 01bfd18f3dad37ba5d4d7730a17895b637fd455c (diff) | |
download | guile-88e703084567eb99238a3be6ba4285d87a25eeae.tar.gz |
Fix typos in examples.
Thanks to Eugene Klimov.
Diffstat (limited to 'examples/box/box.c')
-rw-r--r-- | examples/box/box.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/box/box.c b/examples/box/box.c index 53c022ab1..f9b3a55a7 100644 --- a/examples/box/box.c +++ b/examples/box/box.c @@ -55,7 +55,7 @@ print_box (SCM b, SCM port, scm_print_state *pstate) } -/* This defines the primitve `make-box', which returns a new smob of +/* This defines the primitive `make-box', which returns a new smob of type `box', initialized to `#f'. */ static SCM #define FUNC_NAME "make-box" @@ -109,7 +109,7 @@ box_set_x (SCM b, SCM value) /* Create and initialize the new smob type, and register the - primitives withe the interpreter library. */ + primitives with the interpreter library. */ static void init_box_type (void) { |