mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 08:25:35 +00:00
COMMON: Minor Spelling Fix to Util Header Comment
No functional change.
This commit is contained in:
parent
ecc7986b0b
commit
365e9af4f0
@ -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; }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user