Skip to content

Commit

Permalink
Merge pull request #1437 from timgates42/bugfix_typos
Browse files Browse the repository at this point in the history
  • Loading branch information
erikwrede authored Jul 16, 2022
2 parents 72c2fd5 + 8589aae commit dfece7f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion UPGRADE-v1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class Query(ObjectType):
```

Also, if you wanted to create an `ObjectType` that implements `Node`, you have to do it
explicity.
explicitly.

## Django

Expand Down
2 changes: 1 addition & 1 deletion UPGRADE-v2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def resolve_my_field(root, info, my_arg):
return ...
```

**PS.: Take care with receiving args like `my_arg` as above. This doesn't work for optional (non-required) arguments as stantard `Connection`'s arguments (first, last, after, before).**
**PS.: Take care with receiving args like `my_arg` as above. This doesn't work for optional (non-required) arguments as standard `Connection`'s arguments (first, last, after, before).**
You may need something like this:

```python
Expand Down
2 changes: 1 addition & 1 deletion docs/execution/fileuploading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ File uploading
File uploading is not part of the official GraphQL spec yet and is not natively
implemented in Graphene.

If your server needs to support file uploading then you can use the libary: `graphene-file-upload <https://github.com/lmcgartland/graphene-file-upload>`_ which enhances Graphene to add file
If your server needs to support file uploading then you can use the library: `graphene-file-upload <https://github.com/lmcgartland/graphene-file-upload>`_ which enhances Graphene to add file
uploads and conforms to the unoffical GraphQL `multipart request spec <https://github.com/jaydenseric/graphql-multipart-request-spec>`_.

0 comments on commit dfece7f

Please sign in to comment.