diff --git a/Troubleshooting.mediawiki b/Troubleshooting.mediawiki
index d0a9e61..d515161 100644
--- a/Troubleshooting.mediawiki
+++ b/Troubleshooting.mediawiki
@@ -53,7 +53,7 @@ Therefore data loss can happen for continues read at high baud rates. If data is
This effect is more likely for slower Android device and USB devices with smaller buffer size and typically starts with higher baud rates like 115k2 baud, but is hardly predictable. For low baud rates or non-continuous transfers this issue was not observed as the USB device will not run into a read buffer overflow before the next USB read transfer.
-Using a higher thread priority (default since ''usb-serial-for-android v3.1.0'') and offloading work from onNewData
to other threads can mitigates the issue.
+Using a higher thread priority (default for SerialInputOutputManager
since ''usb-serial-for-android v3.1.0'') and offloading work from onNewData
to other threads can mitigates the issue.
''Data loss'' can also occur with inappropriate buffer size, as shown in next Question.