diff options
author | MarcoFalke <falke.marco@gmail.com> | 2016-06-29 11:48:51 +0200 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2016-09-21 02:43:47 +0000 |
commit | 486650ae6a8ab44c0ac4f8a935b51629c04c1282 (patch) | |
tree | 1aef2011ad0fb2edaff63a9e07ed61e9a412501c /src/consensus | |
parent | c18a9ca7886ada5dfc43787631c578a32f7dc5bf (diff) |
[doc] Fix typos in comments, doxygen: Fix comment syntax
Github-Pull: #8607
Rebased-From: fa27c0a2c4545a579bf339e816c3fa785252b7dc
Diffstat (limited to 'src/consensus')
-rw-r--r-- | src/consensus/validation.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/consensus/validation.h b/src/consensus/validation.h index 000b197270..3e24294a64 100644 --- a/src/consensus/validation.h +++ b/src/consensus/validation.h @@ -22,9 +22,9 @@ static const unsigned char REJECT_CHECKPOINT = 0x43; class CValidationState { private: enum mode_state { - MODE_VALID, //! everything ok - MODE_INVALID, //! network rule violation (DoS value may be set) - MODE_ERROR, //! run-time error + MODE_VALID, //!< everything ok + MODE_INVALID, //!< network rule violation (DoS value may be set) + MODE_ERROR, //!< run-time error } mode; int nDoS; std::string strRejectReason; |