KxSystems/docs-v1

A mistake in Reference->Syntax->Functions->Applications

lwshang opened this issue · 2 comments

In the section mentioned in the title, there is a line saying:

A unary function g with argument d can be evaluated by g@d or g.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 argument d can be evaluated by g@d or g . enlist d.

I've made a pull request with the change you mentioned, as well as one other to the same file.
KxSystems/docs#34

Thanks for the catch!