From 69b9052279a2c69d8d8885b240b3b7b99a86dd17 Mon Sep 17 00:00:00 2001 From: Luc Van Oostenryck Date: Tue, 16 Jun 2020 01:01:12 +0200 Subject: doc: fix code-block formatting in v0.6.2 relnotes The small code example at the top was in normal text-style (which is fine) but was lacking the newline between the two statements (which is much less fine). Fix this by using a '::' instead of a ':' to trigger the literal-code-block-and-more style. Reported-by: Ramsay Jones Signed-off-by: Luc Van Oostenryck --- Documentation/release-notes/v0.6.2.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/release-notes/v0.6.2.rst b/Documentation/release-notes/v0.6.2.rst index 3d0e4ba0..fafd7368 100644 --- a/Documentation/release-notes/v0.6.2.rst +++ b/Documentation/release-notes/v0.6.2.rst @@ -10,7 +10,7 @@ V0.6.2 * add support for _Generic * fully propagate declarations downward. - For example, it means that code like: + For example, it means that code like:: static int foo(void); int foo(void) { return 0; } -- cgit 1.2.3-korg