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.c src/hg/visiGene/hgVisiGene/captionElement.c
index 597a30a..6e79556 100644
--- src/hg/visiGene/hgVisiGene/captionElement.c
+++ src/hg/visiGene/hgVisiGene/captionElement.c
@@ -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. */
 
 #include "common.h"
 #include "captionElement.h"
 
 struct captionElement *captionElementNew(int image, char *type, char *value)
 /* Create new captionElement.  This takes over ownership of value's memory. */
 {
 struct captionElement *ce;
 AllocVar(ce);
 ce->image = image;
 ce->type = cloneString(type);
 ce->value = value;
 return ce;
 }