Explorar el Código

Refs #2063. preparse() -> preParse().

Charles Ezell hace 12 años
padre
commit
71607d8876
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      lib/pipeline/Pipeline.js

+ 1 - 1
lib/pipeline/Pipeline.js

@@ -79,7 +79,7 @@ var Pipeline = module.exports = (function(){
 		CW TODO -- move filter past projections where possible, and noting corresponding field renaming.
 		CW TODO -- move filter past projections where possible, and noting corresponding field renaming.
 		*/
 		*/
 		if (pipelineInstance.preParse instanceof Function) {
 		if (pipelineInstance.preParse instanceof Function) {
-			pipelineInstance.preparse();
+			pipelineInstance.preParse();
 		}
 		}
 
 
 		/*
 		/*