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: