jbr / sibilant

Just another compile-to-js LISP-like language
https://sibilant.org
MIT License
386 stars 47 forks source link

Docs note defined? as opposite of itself in description. #95

Open distransient opened 8 years ago

distransient commented 8 years ago

It says

returns true if none of the things are undefined, as tested with typeof. This is the inverse of defined?

It should say

returns true if none of the things are undefined, as tested with typeof. This is the inverse of undefined?

https://docs.sibilant.org/defined

Sorry, would submit a pull request for this but I couldn't tell how to edit the docs correctly on first glance.

jbr commented 8 years ago

Thanks for catching this! Here's the line in question: https://github.com/jbr/sibilant/blob/master/src/macros/predicates.sibilant#L49