diff options
author | D G Turner | 2019-12-11 02:19:28 +0000 |
---|---|---|
committer | D G Turner | 2019-12-11 02:19:28 +0000 |
commit | 365e9af4f007e9b7a041f2c34f3e883091b7c62c (patch) | |
tree | 69f272a136896b22b6805c204a4b060354f10f6a | |
parent | ecc7986b0b679ce7cea86290687c22b371ac5624 (diff) | |
download | scummvm-rg350-365e9af4f007e9b7a041f2c34f3e883091b7c62c.tar.gz scummvm-rg350-365e9af4f007e9b7a041f2c34f3e883091b7c62c.tar.bz2 scummvm-rg350-365e9af4f007e9b7a041f2c34f3e883091b7c62c.zip |
COMMON: Minor Spelling Fix to Util Header Comment
No functional change.
-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; } |