Ver código fonte

That typo annoys me each time I use Kristaba's fixed library.

Eiyeron Fulmincendii 11 anos atrás
pai
commit
f9fa33ef51
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      fixed.h

+ 1 - 1
fixed.h

@@ -1,7 +1,7 @@
 #ifndef _FIXED_H
 #define _FIXED_H
 
-// Bit lenght of the decimal part, change it to change the precision :
+// Bit length of the decimal part, change it to change the precision :
 #define DB 12
 
 #define MOD(x, y) ((x)<0 ? (y)+(x)%(y) : (x)%(y))