aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKesavan Yogeswaran <hikes@google.com>2023-03-17 16:58:47 +0000
committerCQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-03-17 16:58:47 +0000
commitf847251047345efb8956abd33371f17bc8f1e4be (patch)
tree74efd4527a151b1e385965ed8c13f218c3746f9e
parentee2fdd97a9abae5bca8e0948800268ab92347220 (diff)
downloadpigweed-f847251047345efb8956abd33371f17bc8f1e4be.tar.gz
pw_stream: Fix typo in Reader documentation
Change-Id: I19dcad0abd7572800180cfca90e759f615e54b0c Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/134310 Pigweed-Auto-Submit: Kesavan Yogeswaran <hikes@google.com> Commit-Queue: Auto-Submit <auto-submit@pigweed.google.com.iam.gserviceaccount.com> Reviewed-by: Wyatt Hepler <hepler@google.com>
-rw-r--r--pw_stream/docs.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/pw_stream/docs.rst b/pw_stream/docs.rst
index c4484ae14..a4aaeb913 100644
--- a/pw_stream/docs.rst
+++ b/pw_stream/docs.rst
@@ -209,7 +209,7 @@ Reader interfaces
-----------------
.. cpp:class:: Reader : public Stream
- A Stream that supports writing but not reading. The Write() method is hidden.
+ A Stream that supports reading but not writing. The Write() method is hidden.
Use in APIs when:
* Must read from, but not write to, a stream.