Skip to content

Commit 9dd8ae8

Browse files
authored
Remove accidental comment words in stdio.h
1 parent c9c3825 commit 9dd8ae8

File tree

1 file changed

+5
-5
lines changed
  • src/rp2_common/pico_stdio/include/pico

1 file changed

+5
-5
lines changed

src/rp2_common/pico_stdio/include/pico/stdio.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -186,35 +186,35 @@ int stdio_get_until(char *buf, int len, absolute_time_t until);
186186
*/
187187
int stdio_put_string(const char *s, int len, bool newline, bool cr_translation);
188188

189-
/*! \brief stdio_getchar Alias for \ref getchar that definitely does not go thru the implementation
189+
/*! \brief Alias for \ref getchar that definitely does not go thru the implementation
190190
* in the standard C library even when \ref PICO_STDIO_SHORT_CIRCUIT_CLIB_FUNCS == 0
191191
*
192192
* \ingroup pico_stdio
193193
*/
194194
int stdio_getchar(void);
195195

196-
/*! \brief stdio_getchar Alias for \ref putchar that definitely does not go thru the implementation
196+
/*! \brief Alias for \ref putchar that definitely does not go thru the implementation
197197
* in the standard C library even when \ref PICO_STDIO_SHORT_CIRCUIT_CLIB_FUNCS == 0
198198
*
199199
* \ingroup pico_stdio
200200
*/
201201
int stdio_putchar(int);
202202

203-
/*! \brief stdio_getchar Alias for \ref puts that definitely does not go thru the implementation
203+
/*! \brief Alias for \ref puts that definitely does not go thru the implementation
204204
* in the standard C library even when \ref PICO_STDIO_SHORT_CIRCUIT_CLIB_FUNCS == 0
205205
*
206206
* \ingroup pico_stdio
207207
*/
208208
int stdio_puts(const char *s);
209209

210-
/*! \brief stdio_getchar Alias for \ref vprintf that definitely does not go thru the implementation
210+
/*! \brief Alias for \ref vprintf that definitely does not go thru the implementation
211211
* in the standard C library even when \ref PICO_STDIO_SHORT_CIRCUIT_CLIB_FUNCS == 0
212212
*
213213
* \ingroup pico_stdio
214214
*/
215215
int stdio_vprintf(const char *format, va_list va);
216216

217-
/*! \brief stdio_getchar Alias for \ref printf that definitely does not go thru the implementation
217+
/*! \brief Alias for \ref printf that definitely does not go thru the implementation
218218
* in the standard C library even when \ref PICO_STDIO_SHORT_CIRCUIT_CLIB_FUNCS == 0
219219
*
220220
* \ingroup pico_stdio

0 commit comments

Comments
 (0)