From 84df3438caa58263a9cbc8a41eace9c1f0fdca6b Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 6 Aug 2024 04:18:23 +1000 Subject: [PATCH] Fix markdown list items Fix list items to use capital letters because the list items are sentences (have trailing full stop already). Also, use a long single line because it is [subjectively] easier to read the list. --- CONTRIBUTING.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b919d456c..43c38cb2a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -172,10 +172,9 @@ Library reflects Bitcoin Core approach whenever possible. Naming of data structures/enums and their fields/variants must follow names used in Bitcoin Core, with the following exceptions: -- the case should follow Rust standards (i.e. PascalCase for types and - snake_case for fields and variants); -- omit `C`-prefixes. -- if function `foo` needs a private helper function, use `foo_internal`. +- The case should follow Rust standards (i.e. PascalCase for types and snake_case for fields and variants). +- Omit `C`-prefixes. +- If function `foo` needs a private helper function, use `foo_internal`. ### Upgrading dependencies