aboutsummaryrefslogtreecommitdiff
path: root/doc/developer-notes.md
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-03-14 22:13:04 +0100
committerMarcoFalke <falke.marco@gmail.com>2016-05-10 17:59:07 +0200
commitfadd0485922de94720dfe60c859633041d67b22f (patch)
tree6a8e98aa6a1586873352cf9b75eb01224836eb9b /doc/developer-notes.md
parentfa72f7d99deeebe8bd088753a9a378170ec71f91 (diff)
downloadbitcoin-fadd0485922de94720dfe60c859633041d67b22f.tar.xz
[doc] Link to clang-format in the developer notes
Diffstat (limited to 'doc/developer-notes.md')
-rw-r--r--doc/developer-notes.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md
index 8affb2158a..add2fb5004 100644
--- a/doc/developer-notes.md
+++ b/doc/developer-notes.md
@@ -5,7 +5,9 @@ Various coding styles have been used during the history of the codebase,
and the result is not very consistent. However, we're now trying to converge to
a single style, so please use it in new code. Old code will be converted
gradually.
-- Basic rules specified in src/.clang-format. Use a recent clang-format-3.5 to format automatically.
+- Basic rules specified in [src/.clang-format](/src/.clang-format).
+ Use a recent clang-format to format automatically using one of the [dev scripts]
+ (/contrib/devtools/README.md#clang-formatpy).
- Braces on new lines for namespaces, classes, functions, methods.
- Braces on the same line for everything else.
- 4 space indentation (no tabs) for every block except namespaces.