docs: minor updates to README

This commit is contained in:
2026-06-03 16:58:08 +03:30
parent 1e7b98ffab
commit 6d8bee27f1
+5 -5
View File
@@ -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: