aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/RxLibrary/GRXBufferedPipe.h
diff options
context:
space:
mode:
authorGravatar Michael Lumish <mlumish@google.com>2015-05-20 08:38:41 -0700
committerGravatar Michael Lumish <mlumish@google.com>2015-05-20 08:38:41 -0700
commit958b0b9e7a5f0a95537176c5e25a6934f0b892a3 (patch)
tree37d6418a660a61b05094dd35ba38d8ee46dc7fac /src/objective-c/RxLibrary/GRXBufferedPipe.h
parent4a0b2e2f8b5475775e62cf4121e4990f07b7c187 (diff)
parentb2c300c4be537c54f3adcaf3ca190b9bce002fab (diff)
Merge pull request #1664 from jcanizales/renames-grx-writeable-methods
Rename GRXWriteable methods
Diffstat (limited to 'src/objective-c/RxLibrary/GRXBufferedPipe.h')
-rw-r--r--src/objective-c/RxLibrary/GRXBufferedPipe.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/objective-c/RxLibrary/GRXBufferedPipe.h b/src/objective-c/RxLibrary/GRXBufferedPipe.h
index 4147362ba4..5e876a73bf 100644
--- a/src/objective-c/RxLibrary/GRXBufferedPipe.h
+++ b/src/objective-c/RxLibrary/GRXBufferedPipe.h
@@ -38,12 +38,12 @@
// A buffered pipe is a Writeable that also acts as a Writer (to whichever other writeable is passed
// to -startWithWriteable:).
-// Once it is started, whatever values are written into it (via -didReceiveValue:) will be
-// propagated immediately, unless flow control prevents it.
+// Once it is started, whatever values are written into it (via -writeValue:) will be propagated
+// immediately, unless flow control prevents it.
// If it is throttled and keeps receiving values, as well as if it receives values before being
// started, it will buffer them and propagate them in order as soon as its state becomes
// GRXWriterStateStarted.
-// If it receives an error (via -didFinishWithError:), it will drop any buffered values and
+// If it receives an error (via -writesFinishedWithError:), it will drop any buffered values and
// propagate the error immediately.
//
// Beware that a pipe of this type can't prevent receiving more values when it is paused (for