Skip to content

Commit dc5bf0d

Browse files
committed
Update RxRingBuffer.java
Yet another undelrying
1 parent 72c56f3 commit dc5bf0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/rx/internal/util/RxRingBuffer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ public Object peek() {
413413
synchronized (this) {
414414
Queue<Object> q = queue;
415415
if (q == null) {
416-
// we are unsubscribed and have released the undelrying queue
416+
// we are unsubscribed and have released the underlying queue
417417
return null;
418418
}
419419
o = q.peek();

0 commit comments

Comments
 (0)