From 365e9af4f007e9b7a041f2c34f3e883091b7c62c Mon Sep 17 00:00:00 2001 From: D G Turner Date: Wed, 11 Dec 2019 02:19:28 +0000 Subject: COMMON: Minor Spelling Fix to Util Header Comment No functional change. --- common/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/util.h') 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 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 inline void SWAP(T &a, T &b) { T tmp = a; a = b; b = tmp; } -- cgit v1.2.3