7197002e0c71569ef55b52a3892c1c766a83695e
jcasper
  Wed Jun 26 15:52:30 2024 -0700
Fixing minor function name typo, no ticket

diff --git src/hg/hgTracks/hgTracks.h src/hg/hgTracks/hgTracks.h
index b5d985d..9cf1b88 100644
--- src/hg/hgTracks/hgTracks.h
+++ src/hg/hgTracks/hgTracks.h
@@ -753,31 +753,31 @@
      int chromStart, int chromEnd, double scale,
      int xOff, int y, int height, Color color, MgFont *font,  char *label);
 /* Draw a box scaled from chromosome to window coordinates and draw a label onto it. */
 
 typedef enum {
     GLYPH_CIRCLE,
     GLYPH_TRIANGLE,
     GLYPH_INV_TRIANGLE,
     GLYPH_SQUARE,
     GLYPH_DIAMOND,
     GLYPH_OCTAGON,
     GLYPH_STAR,
     GLYPH_PENTAGRAM
     } glyphType;
 
-void drawScalledGlyph(struct hvGfx *hvg, int chromStart, int chromEnd, double scale, int xOff, int y,
+void drawScaledGlyph(struct hvGfx *hvg, int chromStart, int chromEnd, double scale, int xOff, int y,
                       int heightPer, glyphType glyph, boolean filled, Color outlineColor, Color fillColor);
 /* Draw a glyph as a circle/polygon.  If filled, draw as with fillColor,
  * which may have transparency.
  */
 
 glyphType parseGlyphType(char *glyphStr);
 /* Return the enum glyph type for a string specifying a glyph.
  * Defaults to GLYPH_CIRCLE if the string is unrecognized. */
 
 Color whiteIndex();
 /* Return index of white. */
 
 Color blackIndex();
 /* Return index of black. */