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/geneSimilarities.h src/hg/inc/geneSimilarities.h
index a0f5082..63330eb 100644
--- src/hg/inc/geneSimilarities.h
+++ src/hg/inc/geneSimilarities.h
@@ -1,20 +1,20 @@
 /* Objects to find genePreds given similarity in genome bases annotated.  This
  * is used to relate genes between two gene sets. */
 
 /* Copyright (C) 2008 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 GENESIMILARITIES_H
 #define GENESIMILARITIES_H
 struct genePred;
 struct sqlConnection;
 
 struct geneSim
 /* a target hit and it's similarity to the query */
 {
     struct geneSim *next;
     struct genePred *gene;   // target gene
     float sim;               // similarity score (fraction)
 };
 
 
 struct geneSimilarities