Cleanup: Fix typo in overflowsafe_type comment

This commit is contained in:
Tyler Trahan 2021-11-09 07:18:01 -07:00 committed by Michael Lutz
parent 236f71640c
commit 48c1c7f221
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@
/**
* Overflow safe template for integers, i.e. integers that will never overflow
* you multiply the maximum value with 2, or add 2, or subtract something from
* the minimum value, etc.
* when you multiply the maximum value with 2, or add 2, or subtract something
* from the minimum value, etc.
* @param T the type these integers are stored with.
*/
template <class T>