X Tutup
Skip to content

Commit 55d6045

Browse files
committed
Fix typo in readme
1 parent 2f4289b commit 55d6045

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Unfortunately i could never find real-world simple examples in Android, that cou
99

1010
### 1. Concurrency using schedulers
1111

12-
A common requirement is to offload lengthy heavy I/O intensive operations to a background thread (non-UI thread), and feed the results onc ompletion, back into the UI/main thread. This is a demo of how long running operations can be offloaded to a background thread. After the operation is done, we resume back on the main thread. All using RxJava!
12+
A common requirement is to offload lengthy heavy I/O intensive operations to a background thread (non-UI thread), and feed the results on completion, back into the UI/main thread. This is a demo of how long running operations can be offloaded to a background thread. After the operation is done, we resume back on the main thread. All using RxJava!
1313

1414
The long operation is simulated by a blocking Thread.sleep call. But since it's in a background thread, our UI is never interrupted.
1515

0 commit comments

Comments
 (0)
X Tutup