881e822ef9c0be6de740f46db251c96a202dd3b8
lrnassar
  Tue Apr 28 11:09:54 2026 -0700
Fix incorrect comment in staticPage.lua; closing div is col-md-10, not col-md-9. Per CR feedback. refs #36894

diff --git docs/staticPage.lua docs/staticPage.lua
index e0057e7df9c..3fc86255de3 100644
--- docs/staticPage.lua
+++ docs/staticPage.lua
@@ -139,31 +139,31 @@
   -- Sidebar TOC + body in Bootstrap grid
   add('<div class="row docs-toc-row">')
   add('<div class="col-md-2 hidden-sm hidden-xs">')
   add('<nav class="docs-toc" id="docs-toc">')
   add('<ul>')
   for i, h in ipairs(headers) do
     add("<li><a href='#" .. h.id .. "'>" .. h.text .. "</a></li>")
   end
   add('</ul>')
   add('</nav>')
   add('</div>')
   add('<div class="col-md-10">')
   -- ucsc change end
 
   add(body)
-  add('</div>') -- close col-md-9
+  add('</div>') -- close col-md-10
   add('</div>') -- close row
   if #notes > 0 then
     add('<ol class="footnotes">')
     for _,note in pairs(notes) do
       add(note)
     end
     add('</ol>')
   end
   return table.concat(buffer,'\n') .. '\n'
 end
 
 -- The functions that follow render corresponding pandoc elements.
 -- s is always a string, attr is always a table of attributes, and
 -- items is always an array of strings (the items in a list).
 -- Comments indicate the types of other variables.