5437603957fb22ab9ffb254c2978c2a02439b2e9
hiram
  Wed Jun 10 07:14:01 2026 -0700
fixup comments per claud code review refs #33554

diff --git src/lib/common.c src/lib/common.c
index 74fb590e039..4e01d3168ab 100644
--- src/lib/common.c
+++ src/lib/common.c
@@ -482,40 +482,40 @@
 const struct slInt *b = *((struct slInt **)vb);
 return b->val - a->val;
 }
 
 struct slInt * slIntFind(struct slInt *list, int target)
 /* Find target in slInt list or return NULL */
 {
 struct slInt *i;
 for (i=list;i;i=i->next)
     if (i->val == target)
 	return i;
 return NULL;
 }
 
 struct slUnsigned *slUnsignedNew(unsigned x)
-/* Return a new int. */
+/* Return a new unsigned int. */
 {
 struct slUnsigned *a;
 AllocVar(a);
 a->val = x;
 return a;
 }
 
 struct slUnsignedLong *slUnsignedLongNew(unsigned long x)
-/* Return a new int. */
+/* Return a new unsigned long. */
 {
 struct slUnsignedLong *a;
 AllocVar(a);
 a->val = x;
 return a;
 }
 
 static int doubleCmp(const void *va, const void *vb)
 /* Compare function to sort array of doubles. */
 {
 const double *a = va;
 const double *b = vb;
 double diff = *a - *b;
 if (diff < 0)
     return -1;