diff options
-rw-r--r-- | common/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/util.h b/common/util.h index 8254e972d0..4a030d588c 100644 --- a/common/util.h +++ b/common/util.h @@ -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; } |