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:
|
||||
|
||||
```java
|
||||
deposit(int amount)
|
||||
withdraw(int amount)
|
||||
transfer(BankAccount target, int amount)
|
||||
getBalance()
|
||||
deposit(int amount);
|
||||
withdraw(int amount);
|
||||
transfer(BankAccount target, int amount);
|
||||
getBalance();
|
||||
```
|
||||
|
||||
---
|
||||
@@ -119,7 +119,7 @@ Implement safe concurrent access for:
|
||||
Implement:
|
||||
|
||||
```java
|
||||
transfer(BankAccount target, int amount)
|
||||
transfer(BankAccount target, int amount);
|
||||
```
|
||||
|
||||
#### Requirements:
|
||||
|
||||
Reference in New Issue
Block a user