docs: minor updates to README
This commit is contained in:
@@ -51,10 +51,10 @@ You are ONLY responsible for implementing thread-safe logic inside:
|
|||||||
You must implement the following methods:
|
You must implement the following methods:
|
||||||
|
|
||||||
```java
|
```java
|
||||||
deposit(int amount)
|
deposit(int amount);
|
||||||
withdraw(int amount)
|
withdraw(int amount);
|
||||||
transfer(BankAccount target, int amount)
|
transfer(BankAccount target, int amount);
|
||||||
getBalance()
|
getBalance();
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
@@ -119,7 +119,7 @@ Implement safe concurrent access for:
|
|||||||
Implement:
|
Implement:
|
||||||
|
|
||||||
```java
|
```java
|
||||||
transfer(BankAccount target, int amount)
|
transfer(BankAccount target, int amount);
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Requirements:
|
#### Requirements:
|
||||||
|
|||||||
Reference in New Issue
Block a user