test commit

This commit is contained in:
Knut Sveidqvist
2019-12-18 19:40:50 +01:00
committed by GitHub
parent 56f7459617
commit b90fcc1b71

View File

@@ -126,13 +126,13 @@ There are two ways to define the members of a class, and regardless of the which
BankAccount : +withdrawl(amount) BankAccount : +withdrawl(amount)
``` ```
```mermaid ```mermaid
classDiagram classDiagram
class BankAccount class BankAccount
BankAccount : +String owner BankAccount : +String owner
BankAccount : +BigDecimal balance BankAccount : +BigDecimal balance
BankAccount : +deposit(amount) BankAccount : +deposit(amount)
BankAccount : +withdrawl(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: - Associate members of a class using **{}** brackets, where members are grouped within curly brackets. Suitable for defining multiple members at once. For example:
``` ```