Skip to content

Commit b5d15b6

Browse files
Update UPGRADE-v1.0.md
Hoping to help out by fixing a few small grammatical mistakes. Thanks for the upgrade guide!
1 parent 23e028f commit b5d15b6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

UPGRADE-v1.0.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ schema = graphene.Schema(
9797

9898
## Interfaces
9999

100-
For implementing an Interface in a ObjectType, you have to it onto `Meta.interfaces`.
100+
For implementing an Interface in an ObjectType, you have to add it onto `Meta.interfaces`.
101101

102102
Like:
103103

@@ -142,7 +142,7 @@ class Query(ObjectType):
142142

143143
## Nodes
144144

145-
Apart of implementing as showed in the previous section, for use the node field you have to
145+
Apart from implementing as shown in the previous section, to use the node field you have to
146146
specify the node Type.
147147

148148
Example:
@@ -155,16 +155,16 @@ class Query(ObjectType):
155155
node = relay.Node.Field() # New way
156156
```
157157

158-
Also, if wanted to create an `ObjectType` that implements `Node`, you have to do it
158+
Also, if you wanted to create an `ObjectType` that implements `Node`, you have to do it
159159
explicity.
160160

161161

162162
## Django
163163

164-
The Django integration with Graphene now have an independent package: `graphene-django`.
164+
The Django integration with Graphene now has an independent package: `graphene-django`.
165165
For installing, you have to replace the old `graphene[django]` with `graphene-django`.
166166

167-
* As the package is now independent, you have to import now from `graphene_django`.
167+
* As the package is now independent, you now have to import from `graphene_django`.
168168
* **DjangoNode no longer exists**, please use `relay.Node` instead:
169169

170170
```python
@@ -178,7 +178,7 @@ For installing, you have to replace the old `graphene[django]` with `graphene-dj
178178

179179
## SQLAlchemy
180180

181-
The SQLAlchemy integration with Graphene now have an independent package: `graphene-sqlalchemy`.
181+
The SQLAlchemy integration with Graphene now has an independent package: `graphene-sqlalchemy`.
182182
For installing, you have to replace the old `graphene[sqlalchemy]` with `graphene-sqlalchemy`.
183183

184184
* As the package is now independent, you have to import now from `graphene_sqlalchemy`.

0 commit comments

Comments
 (0)