From 6d8bee27f1b1afe7362c9b5d218caf32fa30d41c Mon Sep 17 00:00:00 2001 From: AryanGh-imp Date: Wed, 3 Jun 2026 16:58:08 +0330 Subject: [PATCH] docs: minor updates to README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 39f2085..25097ba 100644 --- a/README.md +++ b/README.md @@ -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: