aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-06-16 01:01:12 +0200
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-06-16 01:19:24 +0200
commit69b9052279a2c69d8d8885b240b3b7b99a86dd17 (patch)
treee3dbc9d6287ecc8a7015b58d83b8c9d287e5a0c6
parent556079643d3f75d5a8ae39e7e748ab753bf1c2ca (diff)
downloadsparse-69b9052279a2c69d8d8885b240b3b7b99a86dd17.tar.gz
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 <ramsay@ramsayjones.plus.com> Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
-rw-r--r--Documentation/release-notes/v0.6.2.rst2
1 files changed, 1 insertions, 1 deletions
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; }