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/lib/correlate.c src/lib/correlate.c
index 34fa127..1548836 100644
--- src/lib/correlate.c
+++ src/lib/correlate.c
@@ -1,23 +1,23 @@
 /* correlate - calculate r, also known as Pearson's correlation
  * coefficient.  r*r has the nice property that it explains
  * how much of one variable's variation can be explained as
  * a linear function of the other variable's variation.  Beware
  * the weight of extreme outliers though! */
 
 /* Copyright (C) 2011 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 "correlate.h"
 
 
 struct correlate *correlateNew()
 /* Return new correlation handler. */
 {
 struct correlate *c;
 return AllocVar(c);
 }
 
 void correlateFree(struct correlate **pC)
 /* Free up correlator. */
 {