diff options
| author | Carl Dong <[email protected]> | 2018-10-31 17:21:41 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-10-31 17:21:41 -0700 |
| commit | 9605bbd315eb14690427560fd9a274fe837f59f5 (patch) | |
| tree | a7e38230d0d52a7faf2f7cbaee9d7b4f32181ccc /doc/developer-notes.md | |
| parent | Merge #14454: Add SegWit support to importmulti (diff) | |
| download | discoin-9605bbd315eb14690427560fd9a274fe837f59f5.tar.xz discoin-9605bbd315eb14690427560fd9a274fe837f59f5.zip | |
Make clear function argument case in dev notes
Diffstat (limited to 'doc/developer-notes.md')
| -rw-r--r-- | doc/developer-notes.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md index c86648c5b..fd5cc7829 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -69,7 +69,7 @@ tool to clean up patches automatically before submission. - **Symbol naming conventions**. These are preferred in new code, but are not required when doing so would need changes to significant pieces of existing code. - - Variable and namespace names are all lowercase, and may use `_` to + - Variable (including function arguments) and namespace names are all lowercase, and may use `_` to separate words (snake_case). - Class member variables have a `m_` prefix. - Global variables have a `g_` prefix. |