A DESCRIPTION OF THE PROBLEM :
There is a small typo in this page - https://docs.oracle.com/javase/tutorial/essential/concurrency/guardmeth.html
```
Note: There is a second notification method, notify, which wakes up a single thread. Because notify doesn't allow you to specify the thread that is woken up, it is useful only in massively parallel applications â that is, programs with a large number of threads, all doing similar chores. In such an application, you don't care which thread gets woken up.
```
In this, 'Because notify doesn't' should be instead 'Because notifyAll doesn't'.
FREQUENCY : always
There is a small typo in this page - https://docs.oracle.com/javase/tutorial/essential/concurrency/guardmeth.html
```
Note: There is a second notification method, notify, which wakes up a single thread. Because notify doesn't allow you to specify the thread that is woken up, it is useful only in massively parallel applications â that is, programs with a large number of threads, all doing similar chores. In such an application, you don't care which thread gets woken up.
```
In this, 'Because notify doesn't' should be instead 'Because notifyAll doesn't'.
FREQUENCY : always