jsdoc / jsdoc.github.io

JSDoc website
https://jsdoc.app/
Other
203 stars 103 forks source link

Document somewhere that JSDoc is case-insensitive #116

Open dandv opened 9 years ago

dandv commented 9 years ago

See https://github.com/jsdoc3/jsdoc/issues/1046:

At http://usejsdoc.org/tags-type.html I see "number", "boolean", "string" and "Array".

At http://usejsdoc.org/tags-returns.html I see Titlecase: "Number", "Boolean", "Array".

samthor commented 7 years ago

These are different types—this isn't a bug.

number etc are the primitive types, but Number is the object form (think new Number(10)).