mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-18 23:09:49 +02:00
Fix typo on examples
This commit is contained in:
@@ -141,7 +141,7 @@ There are two ways to define the members of a class, and regardless of whichever
|
|||||||
class BankAccount{
|
class BankAccount{
|
||||||
+String owner
|
+String owner
|
||||||
+BigDecimal balance
|
+BigDecimal balance
|
||||||
+deposit(amount) bool
|
+deposit(amount)
|
||||||
+withdrawl(amount)
|
+withdrawl(amount)
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@@ -151,8 +151,8 @@ class BankAccount{
|
|||||||
class BankAccount{
|
class BankAccount{
|
||||||
+String owner
|
+String owner
|
||||||
+BigDecimal balance
|
+BigDecimal balance
|
||||||
+deposit(amount) bool
|
+deposit(amount)
|
||||||
+withdrawl(amount) int
|
+withdrawl(amount)
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user