Skip to content

Commit 5c5a72e

Browse files
committed
docs(appsync): fix users.py typo to locations #830
1 parent 6bd85c5 commit 5c5a72e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/core/event_handler/appsync.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ You can subclass `AppSyncResolverEvent` to bring your own set of methods to hand
717717

718718
As you grow the number of related GraphQL operations a given Lambda function should handle, it is natural to split them into separate files to ease maintenance - That's where the `Router` feature is useful.
719719

720-
Let's assume you have `app.py` as your Lambda function entrypoint and routes in `users.py`, this is how you'd use the `Router` feature.
720+
Let's assume you have `app.py` as your Lambda function entrypoint and routes in `location.py`, this is how you'd use the `Router` feature.
721721

722722
=== "resolvers/location.py"
723723

@@ -746,7 +746,7 @@ Let's assume you have `app.py` as your Lambda function entrypoint and routes in
746746

747747
=== "app.py"
748748

749-
We use `include_router` method and include all location operations registered in the `router` global object.
749+
We use `include_router` method and include all `location` operations registered in the `router` global object.
750750

751751
```python hl_lines="8 13"
752752
from typing import Dict

0 commit comments

Comments
 (0)