Capitalize proper nouns#2916
Conversation
Pull Request Test Coverage Report for Build 9660345835Details
💛 - Coveralls |
0f7671a to
a93bc72
Compare
Pull Request Test Coverage Report for Build 9660391558Details
💛 - Coveralls |
|
Except for the line length the commit log of fc40cf099cd90ab731addac2bb9b9914514bea60 is excellent, I knew exactly why the patch was needed and what it did - super easy to review. |
tcharding
left a comment
There was a problem hiding this comment.
ACK a93bc72f10e4e303d1aaa18adba2fd2a0edfaf8f
|
Nice PR! |
Thanks, and sorry. My editor had the setting switched off. I have now enabled a 50 char limit for the commit subject and 72 chars for the message. |
|
Legend. |
Kixunil
left a comment
There was a problem hiding this comment.
ACK a93bc72f10e4e303d1aaa18adba2fd2a0edfaf8f
a93bc72 to
7e45c73
Compare
Pull Request Test Coverage Report for Build 9708956202Details
💛 - Coveralls |
|
Added 3 patches to extend this pull request to fix everything in the corresponding issue. Changed the commit messages to split long lines. Changed the PR title from Capitalize Taproot to Capitalize proper nouns and updated the description. |
|
I love this PR, you are flying! EDIT: I deleted some stuff to save you reading it, I did some more research and I now think the last patch is correct (even if its slightly off topic for the PR) |
tcharding
left a comment
There was a problem hiding this comment.
ACK 7e45c73f17ca0624dfdbc699ee749eb6e350fe3f
|
utACK 7e45c73f17ca0624dfdbc699ee749eb6e350fe3f. Thanks! Changes like this make the crate feel much more professional. But this needs a rebase now, sorry. |
7e45c73 to
aa5c654
Compare
Taproot is a proper noun and should be capitalized in docs and strings. Make all occurrences of Taproot in comments or strings capitalized.
tap tree should be either Taproot tree in normal language or [`TapTree`] when referring to the struct. Change all occurances of tap tree or taptree.
Change tree to lower case except when title case is being used.
Merkle is a proper noun and should be capitalized in docs and strings. Capitalize all occurances of Merkle in docs and strings.
Huffman is a proper noun and should be capitalized in docs and strings. Capitalize all occurances of Huffman in docs and strings.
By convention error messages should not be capitalised or use full stops. Fix the `taproot` module error messages.
aa5c654 to
e8a30bf
Compare
Pull Request Test Coverage Report for Build 9747984695Details
💛 - Coveralls |
|
Rebased to remove conflict. |
Taproot, Merkle and Huffman are proper nouns and should be capitalized in strings and docs.
These have been capitalized everywhere.
All cases of
taproot/taptree/tap treein docs and strings have been changed to beTaproot treeor[`TapTree`]as appropriate.All cases of
treehave been changed to lower cases, except where it is in title case.Error messages in
Taproothave been changed to start with a lowercase character, except when it is a proper noun, and not end with a period.Close: #2913