Skip to content

Commit 80066e5

Browse files
authored
Merge pull request #854 from johanzietsman-em/master
Fixed typos.
2 parents e07e89d + 587ce5a commit 80066e5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/types/enums.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Enums
22
=====
33

4-
A ``Enum`` is a special ``GraphQL`` type that represents a set of
4+
An ``Enum`` is a special ``GraphQL`` type that represents a set of
55
symbolic names (members) bound to unique, constant values.
66

77
Definition

docs/types/interfaces.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ For example, you can define a field ``hero`` that resolves to any
9191
schema = graphene.Schema(query=Query, types=[Human, Droid])
9292
9393
This allows you to directly query for fields that exist on the Character interface
94-
as well as selecting specific fields on any type that implments the interface
94+
as well as selecting specific fields on any type that implements the interface
9595
using `inline fragments <https://graphql.org/learn/queries/#inline-fragments>`_.
9696

9797
For example, the following query:

docs/types/objecttypes.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ The above ``Person`` ObjectType has the following schema representation:
4646
Resolvers
4747
---------
4848

49-
A resolver is a method that resolves certain fields within a
49+
A resolver is a method that resolves certain fields within an
5050
``ObjectType``. If not specified otherwise, the resolver of a
5151
field is the ``resolve_{field_name}`` method on the ``ObjectType``.
5252

5353
By default resolvers take the arguments ``info`` and ``*args``.
5454

55-
NOTE: The resolvers on a ``ObjectType`` are always treated as ``staticmethod``\ s,
55+
NOTE: The resolvers on an ``ObjectType`` are always treated as ``staticmethod``\ s,
5656
so the first argument to the resolver method ``self`` (or ``root``) need
5757
not be an actual instance of the ``ObjectType``.
5858

0 commit comments

Comments
 (0)