198c9b8daecc44fbda6a6494c566c723920f030a
lrnassar
  Wed Mar 11 18:25:21 2026 -0700
Fixing a few hundred clear typos with the help of Claude. Some are less important in code comments, but majority of them are in user-facing places. I manually approved 60%+ of the changes and didn't see any that were an incorrect suggestion, at worst it was potentially uncessesary, like a code comment having cant instead of can't. No RM.

diff --git python/lib/ucscGb/encode/cv.py python/lib/ucscGb/encode/cv.py
index b6545c4024b..8bbdccb53cc 100644
--- python/lib/ucscGb/encode/cv.py
+++ python/lib/ucscGb/encode/cv.py
@@ -371,31 +371,31 @@
     
     def __init__(self, stanza, key, val):
         CvError.__init__(self, stanza)
         self.msg = '%s does not match %s' % (key, val)
         self.strict = 1
         
 class DuplicateVendorIdError(CvError):
     '''When there exists more than one connected component of stanzas (through derivedFrom) with the same vendorId'''
     
     def __init__(self, stanza):
         CvError.__init__(self, stanza)
         self.msg = '%s' % self.stanza['vendorId']
         self.strict = 0
         
 class InvalidProtocolError(CvError):
-    '''raised if a protocol doesnt match anything in the directory'''
+    '''raised if a protocol doesn't match anything in the directory'''
     
     def __init__(self, stanza, key):
         CvError.__init__(self, stanza)
         self.msg = key
         self.strict = 0
     
 class InvalidTypeError(CvError):
     '''raised if a relational key does not match any other value'''
     
     def __init__(self, stanza, key):
         CvError.__init__(self, stanza)
         self.msg = key
         self.strict = 1
     
 class TypeValidationError(CvError):