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

diff --git src/inc/common.h src/inc/common.h
index 3e0b3812b1c..bd7060ae4c0 100644
--- src/inc/common.h
+++ src/inc/common.h
@@ -492,31 +492,31 @@
     struct slUnsigned *next;  /* Next in list */
     unsigned val;	      /* Unsigned value */
     };
 
 struct slUnsigned *slUnsignedNew(unsigned x);
 /* Return a new slUnsigned. */
 
 struct slUnsignedLong
 /* List of unsigned long */
     {
     struct slUnsignedLong *next;  /* Next in list */
     unsigned long val;	      /* Unsigned long value */
     };
 
 struct slUnsignedLong *slUnsignedLongNew(unsigned long x);
-/* Return a new slUnsigned. */
+/* Return a new slUnsignedLong. */
 
 /******* slDouble - a double on a list *******/
 
 struct slDouble
 /* List of double-precision numbers. */
     {
     struct slDouble *next;	/* Next in list. */
     double val;			/* Double-precision value. */
     };
 
 struct slDouble *slDoubleNew(double x);
 #define newSlDouble slDoubleNew
 /* Return a new int. */
 
 int slDoubleCmp(const void *va, const void *vb);