fix: mapPos documentation #6
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "patch-1"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I just found a minor error in the documentation for the
mapPosfunction. Specifically, the documentation for the usage of theassocparameter did not match the implementation. The old documentation stated that theassocwas binarized to zero or negative and positive. However, in the function body, you only check forassoc < 0, effectively binarizing to negative, and zero or positive.This adapts the documentation for
mapPosto truthfully report the usage of theassocparameter.Thank you for spotting that!