aboutsummaryrefslogtreecommitdiff
path: root/src/streams.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-02-02 05:35:42 -0500
committerMarcoFalke <falke.marco@gmail.com>2018-02-02 05:35:51 -0500
commit1b06ed136f17b526360617a70026aed5ded5746c (patch)
tree113cb8738aecfae49e6d885396abd171420b58d3 /src/streams.h
parentaa360e76a74b8e3eb21c64f30abf8e4f8c27dec5 (diff)
parent1340eda3b7b6ca2789d6ec65dad72ee4c3844661 (diff)
downloadbitcoin-1b06ed136f17b526360617a70026aed5ded5746c.tar.xz
Merge #12283: Fix typos
1340eda3b7 Fix typos (practicalswift) Pull request description: Fix typos. Tree-SHA512: 533a136831387ef26e9a74ba078437496bee38cc026da73fa9e6f6e7f4d5665eccac24cf3ef05e6d3af1329a1214f5ce71b039ddb8378b074e6d4408b8701f95
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 98e25178e1..9f86c4a163 100644
--- a/src/streams.h
+++ b/src/streams.h
@@ -82,7 +82,7 @@ class CVectorWriter
* @param[in] nVersionIn Serialization Version (including any flags)
* @param[in] vchDataIn Referenced byte vector to overwrite/append
* @param[in] nPosIn Starting position. Vector index where writes should start. The vector will initially
- * grow as necessary to max(nPosIn, vec.size()). So to append, use vec.size().
+ * grow as necessary to max(nPosIn, vec.size()). So to append, use vec.size().
*/
CVectorWriter(int nTypeIn, int nVersionIn, std::vector<unsigned char>& vchDataIn, size_t nPosIn) : nType(nTypeIn), nVersion(nVersionIn), vchData(vchDataIn), nPos(nPosIn)
{