Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed by
Diff: error.h
- Revision:
- 55:d722ed6a4237
- Parent:
- 54:71b101360fb9
- Child:
- 59:0883845fe643
--- a/error.h Tue Jan 08 12:46:36 2013 +0000 +++ b/error.h Wed Jan 16 12:56:34 2013 +0000 @@ -46,12 +46,12 @@ * error("That shouldn't have happened!"); * @endcode * - * If the mbed running the program executes this function, it will print the + * If the mbed running the program executes this function, it will print the * message via the USB serial port, and then die with the blue lights of death! * - * The message can use printf-style formatting, so you can report variables in the + * The message can use printf-style formatting, so you can report variables in the * message too. For example, you could use this to check a run-time condition: - * + * * @code * if(x >= 5) { * error("expected x to be less than 5, but got %d", x);