Fix docs on graphene.Int bounds (#891)

This commit is contained in:
Markus Holtermann 2019-03-11 17:32:23 +01:00 committed by Eran Kampf
parent a4681ce6b2
commit 96d497c2b8

View File

@ -39,9 +39,8 @@ Graphene defines the following base Scalar Types:
``graphene.Int`` ``graphene.Int``
Represents non-fractional signed whole numeric Represents non-fractional signed whole numeric
values. Int can represent values between `-(2^53 - 1)` and `2^53 - 1` since values. Int is a signed 32bit integer per the
represented in JSON as double-precision floating point numbers specified `GraphQL spec <https://facebook.github.io/graphql/June2018/#sec-Int>`_
by `IEEE 754 <http://en.wikipedia.org/wiki/IEEE_floating_point>`_.
``graphene.Float`` ``graphene.Float``