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/gbData/ra/raStanza.py python/lib/ucscGb/gbData/ra/raStanza.py
index ec2cbb200c2..900b2da0968 100644
--- python/lib/ucscGb/gbData/ra/raStanza.py
+++ python/lib/ucscGb/gbData/ra/raStanza.py
@@ -42,31 +42,31 @@
         #print 'indent = ' + str(indent)
         return indent
         
     def readStanza(self, stanza, key=None, scopes=None):
         '''
         Populates this entry from a single stanza. Override this to create
         custom behavior in derived classes
         '''
         #print stanza
         for line in stanza:
             self.readLine(line)
             
         if scopes != None:
             i = self.checkIndent(stanza)
             
-            if len(scopes) == i: # if we havent hit a scope this low yet, append it
+            if len(scopes) == i: # if we haven't hit a scope this low yet, append it
                 scopes.append(self)
             else: # otherwise we should just set it
                 scopes[i] = self
                 
             if i > 0:
                 self.parent = scopes[i - 1]
                 for pk in self.parent.keys():
                     if pk not in self.keys():
                         self[pk] = self.parent[pk]
 
         return self.readName(stanza, key)
 
 
     def readName(self, stanza, key=None):
         '''