diff --git a/libguile/struct.c b/libguile/struct.c index 1fd9278e4..955c250b9 100644 --- a/libguile/struct.c +++ b/libguile/struct.c @@ -437,13 +437,13 @@ SCM_DEFINE (scm_make_vtable_vtable, "make-vtable-vtable", 2, 0, 1, "The structure of a struct is described by a vtable, so the vtable is\n" "in essence the type of the struct. The vtable is itself a struct with\n" "a vtable. This could go on forever if it weren't for the\n" - "vtable-vtables which are self-describing vtables, and thus terminates\n" + "vtable-vtables which are self-describing vtables, and thus terminate\n" "the chain.\n\n" "There are several potential ways of using structs, but the standard\n" "one is to use three kinds of structs, together building up a type\n" "sub-system: one vtable-vtable working as the root and one or several\n" "\"types\", each with a set of \"instances\". (The vtable-vtable should be\n" - "compared to the class which is a class of itself.)\n\n" + "compared to the class which is the class of itself.)\n\n" "@example\n" "(define ball-root (make-vtable-vtable \"pr\" 0))\n\n" "(define (make-ball-type ball-color)\n"