From 554abb12f15e1f8f62377057a53050d42318aec4 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Fri, 6 Feb 2015 08:45:43 -0800 Subject: [PATCH] Fix formatting --- format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/format.h b/format.h index 5ab707c4..a25d807c 100644 --- a/format.h +++ b/format.h @@ -1412,7 +1412,7 @@ class SystemError : public internal::RuntimeError { the system message corresponding to the error code. *error_code* is a system error code as given by ``errno``. - **Example** + **Example**:: // This throws a SystemError with the description // cannot open file 'madeup': No such file or directory @@ -2114,7 +2114,7 @@ class WindowsError : public SystemError { **Example**:: - // This throws an WindowsError with the description + // This throws a WindowsError with the description // cannot open file 'madeup': The system cannot find the file specified. // or similar (system message may vary). const char *filename = "madeup";