Skip to content

Commit

Permalink
DOC: Add missing minus sign
Browse files Browse the repository at this point in the history
The int64 data type allows numbers from -9223372036854775808 to
9223372036854775807. The minus sign was missing.
  • Loading branch information
certik committed Dec 31, 2012
1 parent a457fd2 commit 9e7f462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/doc/basics.py
Expand Up @@ -17,7 +17,7 @@
int8 Byte (-128 to 127)
int16 Integer (-32768 to 32767)
int32 Integer (-2147483648 to 2147483647)
int64 Integer (9223372036854775808 to 9223372036854775807)
int64 Integer (-9223372036854775808 to 9223372036854775807)
uint8 Unsigned integer (0 to 255)
uint16 Unsigned integer (0 to 65535)
uint32 Unsigned integer (0 to 4294967295)
Expand Down

0 comments on commit 9e7f462

Please sign in to comment.