aboutsummaryrefslogtreecommitdiff
path: root/src/streams.h
diff options
context:
space:
mode:
authorpracticalswift <[email protected]>2018-08-14 09:27:30 +0200
committerpracticalswift <[email protected]>2018-09-04 13:11:26 +0200
commitada356208e153e088c729c102d5d79c9c9d66f1a (patch)
treef379a875fbf5208de2fe211c0f5c343bc1bc51f0 /src/streams.h
parentMerge #11599: scripted-diff: Small locking rename (diff)
downloaddiscoin-ada356208e153e088c729c102d5d79c9c9d66f1a.tar.xz
discoin-ada356208e153e088c729c102d5d79c9c9d66f1a.zip
Fix typos reported by codespell
Diffstat (limited to 'src/streams.h')
-rw-r--r--src/streams.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/streams.h b/src/streams.h
index d4a309be3..dc20f7a9d 100644
--- a/src/streams.h
+++ b/src/streams.h
@@ -529,7 +529,7 @@ public:
explicit BitStreamReader(IStream& istream) : m_istream(istream) {}
/** Read the specified number of bits from the stream. The data is returned
- * in the nbits least signficant bits of a 64-bit uint.
+ * in the nbits least significant bits of a 64-bit uint.
*/
uint64_t Read(int nbits) {
if (nbits < 0 || nbits > 64) {