diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-11-11 12:26:09 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-11-11 12:26:09 -0500 |
commit | 3d1a7d7dd7e10b9500953701cfd29b9aaa64862a (patch) | |
tree | 8ad939ddee8dadf22d95f62e74abd28480dd67ba /src/lib/intmath | |
parent | 7c3378fb8d37e1f22ae7f04012e3e57a16b7f2fc (diff) | |
download | tor-3d1a7d7dd7e10b9500953701cfd29b9aaa64862a.tar.gz tor-3d1a7d7dd7e10b9500953701cfd29b9aaa64862a.zip |
Light grammar edits
Diffstat (limited to 'src/lib/intmath')
-rw-r--r-- | src/lib/intmath/muldiv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/intmath/muldiv.c b/src/lib/intmath/muldiv.c index 3330a4c569..bde1567cb3 100644 --- a/src/lib/intmath/muldiv.c +++ b/src/lib/intmath/muldiv.c @@ -69,8 +69,8 @@ gcd64(uint64_t a, uint64_t b) return a; } -/** Return the unsigned integer product of <b>a</b> and <b>b</b>, if overflow - * is detected return UINT64_MAX instead. */ +/** Return the unsigned integer product of <b>a</b> and <b>b</b>. If overflow + * is detected, return UINT64_MAX instead. */ uint64_t tor_mul_u64_nowrap(uint64_t a, uint64_t b) { |