From 4e71c4c9efebc4772fdfe44ebccce78c31b87d29 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 18 May 2016 12:49:07 -0600 Subject: [PATCH] Correct some typos in comments --- libc/stdio/lib_lowinstream.c | 4 ++-- libc/stdio/lib_lowoutstream.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libc/stdio/lib_lowinstream.c b/libc/stdio/lib_lowinstream.c index 8964b56749..ad3231784d 100644 --- a/libc/stdio/lib_lowinstream.c +++ b/libc/stdio/lib_lowinstream.c @@ -85,8 +85,8 @@ static int lowinstream_getc(FAR struct lib_instream_s *this) * Initializes a stream for use with low-level, architecture-specific I/O. * * Input parameters: - * lowoutstream - User allocated, uninitialized instance of struct - * lib_lowoutstream_s to be initialized. + * stream - User allocated, uninitialized instance of struct + * lib_lowinstream_s to be initialized. * * Returned Value: * None (User allocated instance initialized). diff --git a/libc/stdio/lib_lowoutstream.c b/libc/stdio/lib_lowoutstream.c index 91604c90c4..788f3f1814 100644 --- a/libc/stdio/lib_lowoutstream.c +++ b/libc/stdio/lib_lowoutstream.c @@ -77,8 +77,8 @@ static void lowoutstream_putc(FAR struct lib_outstream_s *this, int ch) * Initializes a stream for use with low-level, architecture-specific I/O. * * Input parameters: - * lowoutstream - User allocated, uninitialized instance of struct - * lib_lowoutstream_s to be initialized. + * stream - User allocated, uninitialized instance of struct + * lib_lowoutstream_s to be initialized. * * Returned Value: * None (User allocated instance initialized).