From 43d0de2d8ac1a5fb7278879b74cd7c35e3aa2cd2 Mon Sep 17 00:00:00 2001 From: Iain Sproat Date: Sat, 20 Nov 2010 12:15:31 +0000 Subject: [PATCH] Fixed registered name of GREL combination function git-svn-id: http://google-refine.googlecode.com/svn/trunk@1909 7d457c2a-affb-35e4-300a-418c747d4874 --- main/src/com/google/refine/grel/ControlFunctionRegistry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/src/com/google/refine/grel/ControlFunctionRegistry.java b/main/src/com/google/refine/grel/ControlFunctionRegistry.java index 4a99176ce..0fdc365ab 100644 --- a/main/src/com/google/refine/grel/ControlFunctionRegistry.java +++ b/main/src/com/google/refine/grel/ControlFunctionRegistry.java @@ -253,7 +253,7 @@ public class ControlFunctionRegistry { registerFunction("exp", new Exp()); registerFunction("sum", new Sum()); registerFunction("fact", new Fact()); - registerFunction("comb", new Combin()); + registerFunction("combin", new Combin()); registerFunction("degrees", new Degrees()); registerFunction("radians", new Radians());