Skip to content

Commit cd3f734

Browse files
committed
Fix typo and old URL in README file
1 parent 6ab735c commit cd3f734

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ GraphQLView.attach(app, schema=Schema, batch=True)
1717

1818
This will add a `/graphql` endpoint to your app (customizable by passing `route_path='/mypath'` to `GraphQLView.attach`).
1919

20-
Note: `GraphQLView.attach` is just a convenience function, and the same functionality can be acheived with
20+
Note: `GraphQLView.attach` is just a convenience function, and the same functionality can be achieved with
2121

2222
```python
2323
gql_view = GraphQLView(schema=Schema, **kwargs)
@@ -54,7 +54,7 @@ gql_view(request) # <-- the instance is callable and expects a `aiohttp.web.Req
5454
Testing is done with `pytest`.
5555

5656
```bash
57-
git clone https://github.com/dfee/aiohttp-graphql
57+
git clone https://github.com/graphql-python/aiohttp-graphql
5858
cd aiohttp-graphql
5959
# Create a virtualenv
6060
python3.6 -m venv env && source env/bin/activate # for example
@@ -80,4 +80,4 @@ This project is licensed under the MIT License.
8080
[graphql-python]: https://github.com/graphql-python/graphql-core
8181
[Apollo-Client]: http://dev.apollodata.com/core/network.html#query-batching
8282
[Devin Fee]: https://github.com/dfee
83-
[aiohttp-graphql]: https://github.com/dfee/aiohttp-graphql
83+
[aiohttp-graphql]: https://github.com/graphql-python/aiohttp-graphql

0 commit comments

Comments
 (0)