4898794edd81be5285ea6e544acbedeaeb31bf78
max
  Tue Nov 23 08:10:57 2021 -0800
Fixing pointers to README file for license in all source code files. refs #27614

diff --git src/hg/visiGene/hgVisiGene/captionElement.h src/hg/visiGene/hgVisiGene/captionElement.h
index fe2f399..d37bd9d 100644
--- src/hg/visiGene/hgVisiGene/captionElement.h
+++ src/hg/visiGene/hgVisiGene/captionElement.h
@@ -1,22 +1,22 @@
 /* captionElement - this module helps us sort out 
  * which elements in a caption are true for all images
  * (panes) in a file, and which need to be reported
  * separately for each image. */
 
 /* Copyright (C) 2005 The Regents of the University of California 
- * See README in this or parent directory for licensing information. */
+ * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */
 
 #ifndef CAPTIONELEMENT_H
 #define CAPTIONELEMENT_H
 
 struct captionElement
 /* An element in a caption.  Info on one feature in one
  * image of an image file. */
      {
      struct captionElement *next;
      int image;		/* ID of image this is associated with. */
      char *type;	/* Feature type. Memory allocated here. */
      char *value;	/* Specific info.  Memory allocated here. */
      boolean hasHtml;	/* True if has html tags in it. */
      };