Skip to content

Commit fa44237

Browse files
author
MarcoFalke
committed
doc: Fix typos in endif header comments
1 parent ad09c28 commit fa44237

22 files changed

+22
-22
lines changed

build_msvc/libsecp256k1_config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
#define ECMULT_GEN_PREC_BITS 4
3030
#define ECMULT_WINDOW_SIZE 15
3131

32-
#endif /* BITCOIN_LIBSECP256K1_CONFIG_H */
32+
#endif // BITCOIN_LIBSECP256K1_CONFIG_H

src/banman.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ class BanMan
9595
CRollingBloomFilter m_discouraged GUARDED_BY(m_cs_banned) {50000, 0.000001};
9696
};
9797

98-
#endif
98+
#endif // BITCOIN_BANMAN_H

src/consensus/amount.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ static constexpr CAmount COIN = 100000000;
2626
static constexpr CAmount MAX_MONEY = 21000000 * COIN;
2727
inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
2828

29-
#endif // BITCOIN_CONSENSUS_AMOUNT_H
29+
#endif // BITCOIN_CONSENSUS_AMOUNT_H

src/httprpc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ void InterruptREST();
3131
*/
3232
void StopREST();
3333

34-
#endif
34+
#endif // BITCOIN_HTTPRPC_H

src/i2p.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,4 +267,4 @@ class Session
267267
} // namespace sam
268268
} // namespace i2p
269269

270-
#endif /* BITCOIN_I2P_H */
270+
#endif // BITCOIN_I2P_H

src/policy/feerate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ class CFeeRate
6767
SERIALIZE_METHODS(CFeeRate, obj) { READWRITE(obj.nSatoshisPerK); }
6868
};
6969

70-
#endif // BITCOIN_POLICY_FEERATE_H
70+
#endif // BITCOIN_POLICY_FEERATE_H

src/randomenv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ void RandAddDynamicEnv(CSHA512& hasher);
1414
/** Gather non-cryptographic environment data that does not change over time. */
1515
void RandAddStaticEnv(CSHA512& hasher);
1616

17-
#endif
17+
#endif // BITCOIN_RANDOMENV_H

src/rpc/blockchain.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ CBlockPolicyEstimator& EnsureAnyFeeEstimator(const std::any& context);
6767
*/
6868
UniValue CreateUTXOSnapshot(NodeContext& node, CChainState& chainstate, CAutoFile& afile);
6969

70-
#endif
70+
#endif // BITCOIN_RPC_BLOCKCHAIN_H

src/scheduler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,4 +146,4 @@ class SingleThreadedSchedulerClient
146146
size_t CallbacksPending();
147147
};
148148

149-
#endif
149+
#endif // BITCOIN_SCHEDULER_H

src/shutdown.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ bool ShutdownRequested();
3232
*/
3333
void WaitForShutdown();
3434

35-
#endif
35+
#endif // BITCOIN_SHUTDOWN_H

0 commit comments

Comments
 (0)