COMMON: Minor Spelling Fix to Util Header Comment

No functional change.
This commit is contained in:
D G Turner 2019-12-11 02:19:28 +00:00
parent ecc7986b0b
commit 365e9af4f0

View File

@ -52,7 +52,7 @@ template<typename T> inline T CLIP(T v, T amin, T amax)
{ if (v < amin) return amin; else if (v > amax) return amax; else return v; }
/**
* Template method which swaps the vaulues of its two parameters.
* Template method which swaps the values of its two parameters.
*/
template<typename T> inline void SWAP(T &a, T &b) { T tmp = a; a = b; b = tmp; }