From 19cb2a77076657063768e6db342a38933f0ba874 Mon Sep 17 00:00:00 2001 From: David Campbell Date: Sat, 14 Feb 2015 14:17:03 -0500 Subject: [PATCH] add newline before list in functions-and-methods The current version of hoedown treats lists interrupting paragraphs in the Markdown.pl style rather than CommonMark, so a newline is needed for the list to be rendered properly. --- src/doc/style/features/functions-and-methods/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/doc/style/features/functions-and-methods/README.md b/src/doc/style/features/functions-and-methods/README.md index 2dcfc382d0ba..611cd564ccac 100644 --- a/src/doc/style/features/functions-and-methods/README.md +++ b/src/doc/style/features/functions-and-methods/README.md @@ -20,6 +20,7 @@ for any operation that is clearly associated with a particular type. Methods have numerous advantages over functions: + * They do not need to be imported or qualified to be used: all you need is a value of the appropriate type. * Their invocation performs autoborrowing (including mutable borrows).