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:
parent
0a45c68cf8
commit
84df3438ca
|
@ -172,10 +172,9 @@ Library reflects Bitcoin Core approach whenever possible.
|
||||||
|
|
||||||
Naming of data structures/enums and their fields/variants must follow names used
|
Naming of data structures/enums and their fields/variants must follow names used
|
||||||
in Bitcoin Core, with the following exceptions:
|
in Bitcoin Core, with the following exceptions:
|
||||||
- the case should follow Rust standards (i.e. PascalCase for types and
|
- The case should follow Rust standards (i.e. PascalCase for types and snake_case for fields and variants).
|
||||||
snake_case for fields and variants);
|
- Omit `C`-prefixes.
|
||||||
- omit `C`-prefixes.
|
- If function `foo` needs a private helper function, use `foo_internal`.
|
||||||
- if function `foo` needs a private helper function, use `foo_internal`.
|
|
||||||
|
|
||||||
### Upgrading dependencies
|
### Upgrading dependencies
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue