X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/runlisp/blobdiff_plain/6c39ec6d05467457c590ec93ad98c179be6618af..refs/heads/master:/lib.h diff --git a/lib.h b/lib.h index 9bf07d9..cba8965 100644 --- a/lib.h +++ b/lib.h @@ -400,8 +400,8 @@ struct treap_node { /* We can't allocate nodes ourselves, because only the caller knows how. * Instead, insertion is split into two operations: `treap_probe' looks to * see whether a matching node is already in the treap, and returns it if so; - * otherwise, it flls in this `treap_path' structure, which is passed back to - * `treap_insert' to help it add the fresh node into the treap. (See the + * otherwise, it fills in this `treap_path' structure, which is passed back + * to `treap_insert' to help it add the fresh node into the treap. (See the * commentary in `treap_probe' and `treap_insert' for the details.) */ #define TREAP_PATHMAX 64 @@ -646,7 +646,7 @@ extern struct config_var *config_set_var_n(struct config */*conf*/, size_t /*valuelen*/); /* As `config_set_var', except that the variable NAME and VALUE have * explicit lengths (NAMELEN and VALUELEN, respectively) rather than - * being null- terminated. + * being null-terminated. */ extern void config_start_var_iter(struct config */*conf*/,