diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-05-20 22:12:25 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-06-06 11:09:05 +0200 |
commit | 16e3cd380af570fb2f656e0344bab88829a4bcda (patch) | |
tree | 0c71534558479bbec867e465f8dbe71521ffc0da /doc | |
parent | 6d10f43738d58bf623975e3124fd5735aac7d3e1 (diff) |
Clarify include recommendation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/developer-notes.md | 4 |
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 |