aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/Stream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cores/arduino/Stream.cpp')
-rw-r--r--cores/arduino/Stream.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cores/arduino/Stream.cpp b/cores/arduino/Stream.cpp
index f665465..d284631 100644
--- a/cores/arduino/Stream.cpp
+++ b/cores/arduino/Stream.cpp
@@ -27,7 +27,7 @@
#define PARSE_TIMEOUT 1000 // default number of milli-seconds to wait
-// private method to read stream with timeout
+// protected method to read stream with timeout
int Stream::timedRead()
{
int c;
@@ -39,7 +39,7 @@ int Stream::timedRead()
return -1; // -1 indicates timeout
}
-// private method to peek stream with timeout
+// protected method to peek stream with timeout
int Stream::timedPeek()
{
int c;