From 2127c334638d71e90e9376bf5767b7b8ba2e0e94 Mon Sep 17 00:00:00 2001 From: Markus Holtermann Date: Wed, 16 Jan 2019 17:35:21 +0100 Subject: [PATCH] Fix docs on `graphene.Int` bounds --- docs/types/scalars.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/types/scalars.rst b/docs/types/scalars.rst index b6e8f654..b4552cfb 100644 --- a/docs/types/scalars.rst +++ b/docs/types/scalars.rst @@ -39,9 +39,8 @@ Graphene defines the following base Scalar Types: ``graphene.Int`` Represents non-fractional signed whole numeric - values. Int can represent values between `-(2^53 - 1)` and `2^53 - 1` since - represented in JSON as double-precision floating point numbers specified - by `IEEE 754 `_. + values. Int is a signed 32‐bit integer per the + `GraphQL spec `_ ``graphene.Float``