From 96d497c2b8f5495fe603ffb1a7675e95f342dd2c Mon Sep 17 00:00:00 2001 From: Markus Holtermann Date: Mon, 11 Mar 2019 17:32:23 +0100 Subject: [PATCH] Fix docs on `graphene.Int` bounds (#891) --- 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``