diff options
author | jebes <psteidelprogramming@gmail.com> | 2014-09-11 10:45:05 -0400 |
---|---|---|
committer | jebes <psteidelprogramming@gmail.com> | 2014-09-11 10:45:05 -0400 |
commit | a13e879251209268f291d47426a2d37a5e031ee7 (patch) | |
tree | cdcdbf22880b0f6456ada1c8f294a11085614c55 /src/common | |
parent | mispelled brief, corrected it (diff) | |
download | monero-a13e879251209268f291d47426a2d37a5e031ee7.tar.xz |
HOW DO I ENGLISH?
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/varint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/varint.h b/src/common/varint.h index 0e5110d7a..5a73c2746 100644 --- a/src/common/varint.h +++ b/src/common/varint.h @@ -87,7 +87,7 @@ namespace tools { write_varint(std::ostreambuf_iterator<char>(ss), v); return ss.str(); } - /*! \brief reads in the varint as pointer to by InputIt into i + /*! \brief reads in the varint that is pointed to by InputIt into write */ template<int bits, typename InputIt, typename T> typename std::enable_if<std::is_integral<T>::value && std::is_unsigned<T>::value && 0 <= bits && bits <= std::numeric_limits<T>::digits, int>::type |