From c1d57611778f21c29f7d63ad26bdcf266e374c06 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Sun, 7 Feb 2016 20:18:10 -0800 Subject: [PATCH] Fix typo --- docs/pages/docs/sqlalchemy/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/docs/sqlalchemy/tutorial.md b/docs/pages/docs/sqlalchemy/tutorial.md index 72df4d77..3695d17c 100644 --- a/docs/pages/docs/sqlalchemy/tutorial.md +++ b/docs/pages/docs/sqlalchemy/tutorial.md @@ -121,7 +121,7 @@ Unlike a RESTful API, there is only a single URL from which GraphQL is accessed. We are going to use Flask to create a server that expose the GraphQL schema under `/graphql` and a interface for querying it easily: GraphiQL under `/graphiql`. -Afortunately for us, the library `Flask-GraphQL` that we installed previously is making the task quite easy. +Fortunately for us, the library `Flask-GraphQL` that we previously installed makes this task quite easy. ```python # flask_sqlalchemy/app.py