diff options
| author | jantuomi <jans.tuomi@gmail.com> | 2016-08-04 15:18:57 +0300 |
|---|---|---|
| committer | jantuomi <jans.tuomi@gmail.com> | 2016-08-04 15:18:57 +0300 |
| commit | be4953049321731f865e94def771ed53fe6b061f (patch) | |
| tree | 05a4a8c7fca87a6240b25a16e4cc99dd7db56a3b /src/main/com/jantuomi/tunkki/exception | |
| parent | efc2af17c87104ad35e32c50d26a8678b519a1bf (diff) | |
Store functions as symbols in the scope
Functions no longer know their own name because they are essentially lambdas assigned to variables
Diffstat (limited to 'src/main/com/jantuomi/tunkki/exception')
| -rw-r--r-- | src/main/com/jantuomi/tunkki/exception/types/FunctionArgumentTunkkiError.java | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
