From b90fcc1b7160290294555653ad26062a02a04578 Mon Sep 17 00:00:00 2001 From: Knut Sveidqvist Date: Wed, 18 Dec 2019 19:40:50 +0100 Subject: [PATCH] test commit --- docs/classDiagram.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/classDiagram.md b/docs/classDiagram.md index 6e838c6cd..0f70e071a 100644 --- a/docs/classDiagram.md +++ b/docs/classDiagram.md @@ -126,13 +126,13 @@ There are two ways to define the members of a class, and regardless of the which BankAccount : +withdrawl(amount) ``` ```mermaid - classDiagram + classDiagram class BankAccount BankAccount : +String owner BankAccount : +BigDecimal balance BankAccount : +deposit(amount) BankAccount : +withdrawl(amount) -``` + ``` - Associate members of a class using **{}** brackets, where members are grouped within curly brackets. Suitable for defining multiple members at once. For example: ```