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.
This commit is contained in:
Tobin C. Harding 2024-08-06 04:18:23 +10:00
parent 0a45c68cf8
commit 84df3438ca
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 3 additions and 4 deletions

View File

@ -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