You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exercises/practice/bank-account/.approaches/synchronized-statements/content.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,7 +103,7 @@ synchronized int getBalance() throws BankAccountActionInvalidException {
103
103
}
104
104
```
105
105
106
-
When using [synchronized methods][approach-synchronized-methods] and `synchronized(this)`, it is important to keep in mind that may be trying to acquire a lock on the same instance.
106
+
When using [synchronized methods][approach-synchronized-methods] and `synchronized(this)`, it is important to keep in mind that it may be trying to acquire a lock on the same instance.
0 commit comments