From 18015b55d5e86b5f8eab3af4125c499913f482f4 Mon Sep 17 00:00:00 2001 From: Kyle Quinn Date: Sun, 27 Sep 2020 09:18:53 -0400 Subject: [PATCH] I resolved spelling and capitalization mistakes. For ~~instaling~~installing ~~g~~Graphene, just run this command in your shell. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9b617069..04692973 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A [SQLAlchemy](http://www.sqlalchemy.org/) integration for [Graphene](http://gra ## Installation -For instaling graphene, just run this command in your shell +For installing Graphene, just run this command in your shell. ```bash pip install "graphene-sqlalchemy>=2.0" @@ -34,7 +34,7 @@ class UserModel(Base): last_name = Column(String) ``` -To create a GraphQL schema for it you simply have to write the following: +To create a GraphQL schema for it, you simply have to write the following: ```python import graphene