diff --git a/demos/er.html b/demos/er.html index ccf276d88..026357efa 100644 --- a/demos/er.html +++ b/demos/er.html @@ -16,18 +16,30 @@
       erDiagram
-        accTitle: A very simple Entity-Relationship demo
-        accDescr: Shows the relationships between Customer, Order, Line-Item, and Delivery-Address
+        title: This is a title
+        accDescription_ Test a description
 
         CUSTOMER ||--o{ ORDER : places
         ORDER ||--|{ LINE-ITEM : contains
         CUSTOMER }|..|{ DELIVERY-ADDRESS : uses
+
+        DELIVERY-ADDRESS {
+          int customerId
+          string addressLine1
+          string addressLine2
+          string city
+          string county
+          string state
+          string region
+          string country
+          string postalCode
+        }