]> www.ginac.de Git - ginac.git/blobdiff - ginac/utils.h
Fix some apparent typos and misindentations.
[ginac.git] / ginac / utils.h
index dd39d42ec2f5e412d1a54f8acbb11aca5caf9709..042f14cb93c8185e6f2c4a1ab1989d74b18eae26 100644 (file)
@@ -49,7 +49,7 @@ class dunno {};
 unsigned log2(unsigned n);
 
 /** Rotate bits of unsigned value by one bit to the left.
-  * This can be necesary if the user wants to define its own hashes. */
+  * This can be necessary if the user wants to define its own hashes. */
 inline unsigned rotate_left(unsigned n)
 {
        return (n & 0x80000000U) ? (n << 1 | 0x00000001U) : (n << 1);