What needs to be fixed?
Please be specific as possible and add a link to the relevant file/lines.
T2 will not be able to lock the mutex for A, because T1 is holding it. T1 will not be able to lock the mutex for B, because T1 is holding it.
The correct one should be:
T1 will not be able to lock the mutex for B, because T2 is holding it.