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/inc/chromInserts.h src/hg/inc/chromInserts.h
index e7cc2b1..9fffe4a 100644
--- src/hg/inc/chromInserts.h
+++ src/hg/inc/chromInserts.h
@@ -1,20 +1,20 @@
 /* chromInserts - this module helps handle centromeres, heterochromatic regions
  * and other large gaps in chromosomes. */
 
 /* Copyright (C) 2003 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 CHROMINSERTS_H
 #define CHROMINSERTS_H
 
 struct bigInsert
 /* Describes a big insertion. */
     {
     struct bigInsert *next;	/* Next in list. */
     char *ctgBefore;            /* Contig before insert (or NULL) */
     char *ctgAfter;             /* Contig after insert (or NULL) */
     int size;                   /* Insert size in bases. */
     char *type;			/* 'centromere' 'short_arm' etc. */
     struct chromInserts *chrom; /* Pointer to associated chromosome. */
     };