src/inc/obscure.h 1.37

1.37 2010/05/17 02:18:24 kent
Fixed small typo in parameter name in function prototype.
Index: src/inc/obscure.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/inc/obscure.h,v
retrieving revision 1.36
retrieving revision 1.37
diff -b -B -U 4 -r1.36 -r1.37
--- src/inc/obscure.h	27 Jan 2010 21:04:09 -0000	1.36
+++ src/inc/obscure.h	17 May 2010 02:18:24 -0000	1.37
@@ -117,9 +117,9 @@
 struct hash *hashVarLine(char *line, int lineIx);
 /* Return a symbol table from a line of form:
  *   var1=val1 var2='quoted val2' var3="another val" */
 
-struct hash *hashThisEqThatLine(char *line, int lineIx, boolean firstStartsWIthLetter);
+struct hash *hashThisEqThatLine(char *line, int lineIx, boolean firstStartsWithLetter);
 /* Return a symbol table from a line of form:
  *   1-this1=val1 2-this='quoted val2' var3="another val" 
  * If firstStartsWithLetter is true, then the left side of the equals must start with
  * and equals. */