mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-29 16:23:55 +00:00
Fix error message
Fix: - https://forum.plantuml.net/14905/typo-in-error-message And comment on: - https://forum.plantuml.net/12557/problems-with-built-in-functions-%25upper-and-%25lower-eclipse
This commit is contained in:
parent
de5d963afe
commit
7568e37f73
@ -95,7 +95,7 @@ public class ReversePolishInterpretor {
|
|||||||
if (trace)
|
if (trace)
|
||||||
System.err.println("function=" + function);
|
System.err.println("function=" + function);
|
||||||
if (function == null) {
|
if (function == null) {
|
||||||
throw EaterException.unlocated("Unknow built-in function " + token2.getSurface());
|
throw EaterException.unlocated("Unknown built-in function " + token2.getSurface());
|
||||||
}
|
}
|
||||||
if (function.canCover(nb, Collections.<String>emptySet()) == false) {
|
if (function.canCover(nb, Collections.<String>emptySet()) == false) {
|
||||||
throw EaterException
|
throw EaterException
|
||||||
|
Loading…
Reference in New Issue
Block a user