-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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
Nested generics on ClassDiagram #4937
Comments
I think I'm having the same issue, but if not let me know I can create a different issue. Defining a property in
It appears it is the comma breaking things, as this works:
Here is a full sample: classDiagram
class ChartViewModel {
+ Dictionary~KeyType->List~ElType~~ Dict
}
vs. classDiagram
class ChartViewModel {
+ Dictionary~KeyType,List~ElType~~ Dict
}
|
It could write like this |
@erichiller is correct (missed the comment somehow) - this is due to the commas, and something I am, slowly, in the process of working on. |
I am sorry for the LONG delay - but I am now actively working on an update to the class diagram syntax that will address this, and other, issues. Should have something within a couple of days :) |
Description
Hi, I've not found an issue about it, but if I put nested generic types on method return type they're represented in a wrong way, for example:
This:
Returns something like:
Which is incorrect.
Steps to reproduce
Create a data type with two generics, one of them must have a generic type as well.
Code Sample
The text was updated successfully, but these errors were encountered: