diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-11-10 08:24:45 -0700 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-11-10 08:24:45 -0700 |
commit | 2276dcf05f7e0ae13ba434615cf7f34dc06b2afe (patch) | |
tree | c2d2282aeed90f2a3c9be1d28423bedb984fab0e /src/gallium/auxiliary/util | |
parent | 5668e7fa80d71bec38c61ea29e6a2a9996e0a73c (diff) |
gallium: fix typos in comments
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r-- | src/gallium/auxiliary/util/u_math.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/util/u_math.c b/src/gallium/auxiliary/util/u_math.c index 5b3cab4642..9c5f616ceb 100644 --- a/src/gallium/auxiliary/util/u_math.c +++ b/src/gallium/auxiliary/util/u_math.c @@ -30,7 +30,7 @@ #include "util/u_math.h" -/** 2^x, for x in [-1.0, 1.0[ */ +/** 2^x, for x in [-1.0, 1.0] */ float pow2_table[POW2_TABLE_SIZE]; @@ -43,7 +43,7 @@ init_pow2_table(void) } -/** log2(x), for x in [1.0, 2.0[ */ +/** log2(x), for x in [1.0, 2.0] */ float log2_table[LOG2_TABLE_SIZE]; |