-
Notifications
You must be signed in to change notification settings - Fork 144
[CLEANUP] Order class names in the class diagram alphabetically #1299
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
Conversation
819128d
to
601cb8b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not entirely sure of the rationale behind the reordering, but since there was no specific order prevoiusly (other than to try and get the class diagram to render more clearly, which didn't work), it's fine.
However, I think lexicographical ordering would be better than ASCII, and the blank line after the config settings should be kept.
@@ -621,109 +621,108 @@ class Sabberworm\CSS\CSSList\Document#4 (2) { | |||
```mermaid | |||
classDiagram | |||
direction LR | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer the blank line between the settings and the content to be retained.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
class CSSString { | ||
} | ||
class CalcFunction { | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In my alphabet, 'a' comes before 's'.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The diagram generator we're using seems to sort an uppercase "S" before a lowercase "a", it seems.
601cb8b
to
4761d46
Compare
The rationale is to make the diff smaller in the PR that uses the updated autogenerated class diagram. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The rationale is to make the diff smaller in the PR that uses the updated autogenerated class diagram.
The diagram generator we're using seems to sort an uppercase "S" before a lowercase "a", it seems.
I understand now. Thanks.
No description provided.