Skip to content

Commit b7f81d2

Browse files
vanniktechakarnokd
authored andcommitted
2.x: Fix typo in DisposableHelper (#4900)
1 parent 75e9bfa commit b7f81d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/reactivex/internal/disposables/DisposableHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public static boolean replace(AtomicReference<Disposable> field, Disposable d) {
100100
/**
101101
* Atomically disposes the Disposable in the field if not already disposed.
102102
* @param field the target field
103-
* @return true if the curren thread managed to dispose the Disposable
103+
* @return true if the current thread managed to dispose the Disposable
104104
*/
105105
public static boolean dispose(AtomicReference<Disposable> field) {
106106
Disposable current = field.get();

0 commit comments

Comments
 (0)