A mistake in Reference->Syntax->Functions->Applications
lwshang opened this issue · 2 comments
lwshang commented
In the section mentioned in the title, there is a line saying:
A unary function
g
with argumentd
can be evaluated byg@d
org.enlist d
.
The mistake is in the last code which use .
apply. The correct using of it requires spaces on both sides of the dot. Therefore, this line should be:
A unary function
g
with argumentd
can be evaluated byg@d
org . enlist d
.
WillDaSilva commented
I've made a pull request with the change you mentioned, as well as one other to the same file.
KxSystems/docs#34
Deleted user commented
Thanks for the catch!