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/axtLib.h src/hg/inc/axtLib.h
index 8c45e51..4b5ba1c 100644
--- src/hg/inc/axtLib.h
+++ src/hg/inc/axtLib.h
@@ -1,25 +1,25 @@
 /* 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 AXTLIB_H
 #define AXTLIB_H
 
 void axtListReverse(struct axt **axtList, char *queryDb);
 /* reverse complement an entire axtList */
 
 struct axt *createAxtGap(char *nibFile, char *chrom, 	
 			 int start, int end, char strand);
 /* return an axt alignment with the query all deletes - null aligment */
 
 void axtFillGap(struct axt **aList, char *nibDir, char direction);
 /* fill gaps between blocks with null axts with seq on t and q seq all gaps*/
 /* direction = '+' ascending on + strand, - is descending on - strand */
 
 char *getAxtFileName(char *chrom, char *toDb, char *alignment, char *fromDb);
 /* return file name for a axt alignment */
 
 struct axt *netFillToAxt(struct cnFill *fill, struct dnaSeq *tChrom, int tSize,
 	struct hash *qChromHash, char *nibDir,
 	struct chain *chain, boolean swap);
 /* Convert subset of chain as defined by fill to axt. swap query and target if swap is true.*/
 #endif