8d11236cb4e555b9cbd549b86a097e7817682e49
hiram
  Sat Jun 13 23:05:30 2026 -0700
grammer correction per claude code review refs #31811

diff --git src/hg/utils/otto/userRequests/ottoRequestView.cgi src/hg/utils/otto/userRequests/ottoRequestView.cgi
index 7d19cddc8e9..648e32778e8 100644
--- src/hg/utils/otto/userRequests/ottoRequestView.cgi
+++ src/hg/utils/otto/userRequests/ottoRequestView.cgi
@@ -24,31 +24,31 @@
 HGDB_CONF = None
 DB = None
 USE_PROFILE = None
 
 # Galaxy queue status panel - snapshot is refreshed by ottoRequestWatch.sh
 # (cron, every 11 minutes), CGI just reads it.
 CACHE_PATH = '/data/apache/trash/ottoRequestGalaxyStatus.json'
 CACHE_TTL  = 1800  # seconds; older than this -> show "stale" instead
 
 # featureBits coverage snapshot - append-only file maintained by
 # featureBitsSnapshot.py (cron, via ottoRequestWatch.sh).  fb.*.txt
 # values are immutable once an alignment completes so no TTL is needed;
 # featureBitsPct() falls back to an NFS read on a snapshot miss.
 FB_SNAPSHOT_PATH = '/data/apache/trash/ottoRequestFeatureBitsPct.json'
 
-# keep this liftStatus and asmStatus lists at the same length so that
+# keep these liftStatus and asmStatus lists at the same length so that
 #   the verification check in doResetStatus() will function on just liftStatus
 liftStatus = {
     0: 'received by API',
     1: 'acknowledged, email sent',
     2: 'galaxy job started',
     3: 'galaxy done, download started',
     4: 'downloaded, track files made',
     5: 'symlinks ready, awaiting push',
     6: 'push complete',
     7: 'ERROR',
     8: 'COMPLETE (final email sent)',
 }
 
 asmStatus = {
     0: 'received by API',