Ensure consistent naming between documentation and code, also removed unnecessary function

This commit is contained in:
Justin Greywolf
2024-11-08 13:51:05 -08:00
parent df636c6d0a
commit c5106a1d1f
15 changed files with 206 additions and 220 deletions

View File

@@ -500,12 +500,12 @@ class Class10
C1 --> C2`
);
});
it('should render a class with a text label, members and annotation', () => {
it('should render a class with a text label, attribute and annotation', () => {
imgSnapshotTest(
`classDiagram
class C1["Class 1 with text label"] {
<<interface>>
+member1
+attribute1
}
C1 --> C2`
);