Fixed typo. Thanks @ pauliwang!

This commit is contained in:
Syrus Akbary 2015-11-30 22:41:44 -08:00
parent 7530aeb202
commit c6170671c0

View File

@ -116,9 +116,9 @@ INSTALLED_APPS = [
Unlike a RESTful API, there is only a single URL from which a GraphQL is accessed. Unlike a RESTful API, there is only a single URL from which a GraphQL is accessed.
Requests to this URL are handled by Graphene's `GraphQLView` view. Requests to this URL are handled by Graphene's `GraphQLView` view.
Additionally, and interface for navigating this API will be very useful. Graphene Additionally, an interface for navigating this API will be very useful. Graphene
includes the [graphiql](https://github.com/graphql/graphiql) in-browser IDE includes the [graphiql](https://github.com/graphql/graphiql) in-browser IDE
which assits and exploring and querying your new API. We'll add a URL for this too. which assists in exploring and querying your new API. Well add a URL for this too.
```python ```python
from django.conf.urls import url, include from django.conf.urls import url, include