aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorD G Turner2019-12-11 02:19:28 +0000
committerD G Turner2019-12-11 02:19:28 +0000
commit365e9af4f007e9b7a041f2c34f3e883091b7c62c (patch)
tree69f272a136896b22b6805c204a4b060354f10f6a /common
parentecc7986b0b679ce7cea86290687c22b371ac5624 (diff)
downloadscummvm-rg350-365e9af4f007e9b7a041f2c34f3e883091b7c62c.tar.gz
scummvm-rg350-365e9af4f007e9b7a041f2c34f3e883091b7c62c.tar.bz2
scummvm-rg350-365e9af4f007e9b7a041f2c34f3e883091b7c62c.zip
COMMON: Minor Spelling Fix to Util Header Comment
No functional change.
Diffstat (limited to 'common')
-rw-r--r--common/util.h2
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; }