diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-01-11 12:51:38 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-01-11 12:51:38 +0000 |
commit | ba1d40843994392b6d12f09fb16bee3c23195679 (patch) | |
tree | aa990c8db2ebb4ab006c3341ffe6c546be6624f2 /os/hal/lib | |
parent | 1187f7fad4eb17d984941fb9623dc75807763300 (diff) | |
download | ChibiOS-ba1d40843994392b6d12f09fb16bee3c23195679.tar.gz ChibiOS-ba1d40843994392b6d12f09fb16bee3c23195679.tar.bz2 ChibiOS-ba1d40843994392b6d12f09fb16bee3c23195679.zip |
Fixed chprintf documentation.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10035 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/lib')
-rw-r--r-- | os/hal/lib/streams/chprintf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/os/hal/lib/streams/chprintf.c b/os/hal/lib/streams/chprintf.c index 4720864cb..5875d3e8a 100644 --- a/os/hal/lib/streams/chprintf.c +++ b/os/hal/lib/streams/chprintf.c @@ -312,8 +312,7 @@ int chprintf(BaseSequentialStream *chp, const char *fmt, ...) { /**
* @brief System formatted output function.
- * @details This function implements a minimal @p vprintf()-like functionality
- * with output on a @p BaseSequentialStream.
+ * @details This function implements a minimal @p snprintf()-like functionality.
* The general parameters format is: %[-][width|*][.precision|*][l|L]p.
* The following parameter types (p) are supported:
* - <b>x</b> hexadecimal integer.
|