struct/assoc.[ch]: Fix some commentary typos.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 28 Mar 2020 09:32:52 +0000 (09:32 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Fri, 8 May 2020 12:44:29 +0000 (13:44 +0100)
struct/assoc.c
struct/assoc.h

index 9aef172..27d25bf 100644 (file)
@@ -89,7 +89,8 @@ void assoc_destroy(assoc_table *t)
  *             the pointer returned.  The flag @*f@ is cleared if the item
  *             couldn't be found, or set if it was.
  *
  *             the pointer returned.  The flag @*f@ is cleared if the item
  *             couldn't be found, or set if it was.
  *
- *             All the atoms used in a particular table should
+ *             All the atoms used in a particular table should come from the
+ *             same atom table.
  */
 
 void *assoc_find(assoc_table *t, atom *a, size_t sz, unsigned *f)
  */
 
 void *assoc_find(assoc_table *t, atom *a, size_t sz, unsigned *f)
@@ -115,7 +116,7 @@ void *assoc_find(assoc_table *t, atom *a, size_t sz, unsigned *f)
   if (f) *f = 0;
   if (!sz) return (0);
 
   if (f) *f = 0;
   if (!sz) return (0);
 
-  /* --- Make a new assoication --- */
+  /* --- Make a new association --- */
 
   q = x_alloc(t->t.a, sz);
   q->a = a;
 
   q = x_alloc(t->t.a, sz);
   q->a = a;
index 5fd1f29..6a40def 100644 (file)
@@ -98,7 +98,8 @@ extern void assoc_destroy(assoc_table */*t*/);
  *             the pointer returned.  The flag @*f@ is cleared if the item
  *             couldn't be found, or set if it was.
  *
  *             the pointer returned.  The flag @*f@ is cleared if the item
  *             couldn't be found, or set if it was.
  *
- *             All the atoms used in a particular table should
+ *             All the atoms used in a particular table should come from the
+ *             same atom table.
  */
 
 extern void *assoc_find(assoc_table */*t*/, atom */*a*/,
  */
 
 extern void *assoc_find(assoc_table */*t*/, atom */*a*/,