aboutsummaryrefslogtreecommitdiff
path: root/doc/developer-notes.md
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-05-20 22:12:25 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2018-06-06 11:09:05 +0200
commit16e3cd380af570fb2f656e0344bab88829a4bcda (patch)
tree0c71534558479bbec867e465f8dbe71521ffc0da /doc/developer-notes.md
parent6d10f43738d58bf623975e3124fd5735aac7d3e1 (diff)
downloadbitcoin-16e3cd380af570fb2f656e0344bab88829a4bcda.tar.xz
Clarify include recommendation
Diffstat (limited to 'doc/developer-notes.md')
-rw-r--r--doc/developer-notes.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md
index 9081cab911..b722448a07 100644
--- a/doc/developer-notes.md
+++ b/doc/developer-notes.md
@@ -594,8 +594,8 @@ namespace {
- *Rationale*: Avoids confusion about the namespace context
-- Prefer `#include <primitives/transaction.h>` bracket syntax instead of
- `#include "primitives/transactions.h"` quote syntax when possible.
+- Use `#include <primitives/transaction.h>` bracket syntax instead of
+ `#include "primitives/transactions.h"` quote syntax.
- *Rationale*: Bracket syntax is less ambiguous because the preprocessor
searches a fixed list of include directories without taking location of the