summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%google.com <devnull@localhost>2008-01-29 23:33:02 +0000
committerwtc%google.com <devnull@localhost>2008-01-29 23:33:02 +0000
commit2e1b82f47bd8ffb9c64234ee9fbeb9074c3dc984 (patch)
tree8ce88a4eb11af90631549a9f006ad1be1b670a1f
parent2bce08959c288a8d17d197cb26e41a848e41054a (diff)
downloadnspr-hg-NSPR_HEAD_20080129.tar.gz
Minor comment fix.NSPR_HEAD_20080129
-rw-r--r--pr/include/prbit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pr/include/prbit.h b/pr/include/prbit.h
index 0a4e8e9b..1f4fc843 100644
--- a/pr/include/prbit.h
+++ b/pr/include/prbit.h
@@ -112,7 +112,7 @@ NSPR_API(PRIntn) PR_FloorLog2(PRUint32 i);
** 32-bit integer type such as PRUint32.
**
** There is no rotate operation in the C Language, so the construct
-** (a >> 28) | (a << 4) is frequently used instead. Most compilers convert
+** (a << 4) | (a >> 28) is frequently used instead. Most compilers convert
** this to a rotate instruction, but MSVC doesn't without a little help.
** To get MSVC to generate a rotate instruction, we have to use the _rotl
** or _rotr intrinsic and use a pragma to make it inline.