From c6170671c0b05049a59efa0675f285430ec6aa34 Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Mon, 30 Nov 2015 22:41:44 -0800 Subject: [PATCH] Fixed typo. Thanks @ pauliwang! --- docs/pages/docs/quickstart-django.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/pages/docs/quickstart-django.md b/docs/pages/docs/quickstart-django.md index 5367a0b7..7ae15113 100644 --- a/docs/pages/docs/quickstart-django.md +++ b/docs/pages/docs/quickstart-django.md @@ -116,9 +116,9 @@ INSTALLED_APPS = [ 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. -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 -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. We’ll add a URL for this too. ```python from django.conf.urls import url, include