-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing space between Const
and it's name
#220
Comments
Thanks again.. fix in [email protected] .. |
Thank you! |
Hmm. Speaking of the proposed changes, they seem nice in general. Less duplication. Btw, here there are type aliases and corresponding markdown docs from the project that motivated this issue. |
Yes maybe it would be better to keep the one-liner type declarations for your use cases. I think will go for more subtle changes at this stage. Thanks again - very useful to have some feedback. |
I have a code that looks similar to this:
Produced documentation looks like this:
The last line renders like this:
▸
Const
baz(foos
: Foo<string>[]): stringNote the absence of whitespace between
Const
andbaz
. (It might not be obvious depending on the styles but it copies as a single word.)I did a quick look through the tests and it seems that the space is expected between
Const
and a variable name. Perhaps something wrong in this particular situation.(Not sure what to think about the type
Bar
being expanded in the docs, but at least it's not wrong technically.)The text was updated successfully, but these errors were encountered: