From be4953049321731f865e94def771ed53fe6b061f Mon Sep 17 00:00:00 2001 From: jantuomi Date: Thu, 4 Aug 2016 15:18:57 +0300 Subject: Store functions as symbols in the scope Functions no longer know their own name because they are essentially lambdas assigned to variables --- .../jantuomi/tunkki/exception/types/FunctionArgumentTunkkiError.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/com/jantuomi/tunkki/exception') diff --git a/src/main/com/jantuomi/tunkki/exception/types/FunctionArgumentTunkkiError.java b/src/main/com/jantuomi/tunkki/exception/types/FunctionArgumentTunkkiError.java index 1b61c86..068b55d 100644 --- a/src/main/com/jantuomi/tunkki/exception/types/FunctionArgumentTunkkiError.java +++ b/src/main/com/jantuomi/tunkki/exception/types/FunctionArgumentTunkkiError.java @@ -10,7 +10,7 @@ public class FunctionArgumentTunkkiError extends TunkkiError { @Override public String what() { - return "The parameter list given to function %s is either of wrong length or the parameters are of wrong type. Actual: %s"; + return "The parameter list given to function is either of wrong length or the parameters are of wrong type. Actual: %s"; } @Override -- cgit v1.3