@@ -198,7 +198,7 @@ Each dynamic route you set must be part of your function signature. This allows
198198
199199=== "dynamic_routes.py"
200200
201- ```python hl_lines="14 16 "
201+ ```python hl_lines="16 18 "
202202 --8<-- "examples/event_handler_rest/src/dynamic_routes.py"
203203 ```
204204
@@ -640,7 +640,7 @@ matches one of the allowed values.
640640
641641=== "setting_cors.py"
642642
643- ```python hl_lines="5 11-12 34 "
643+ ```python hl_lines="7 14-15 38 "
644644 --8<-- "examples/event_handler_rest/src/setting_cors.py"
645645 ```
646646
@@ -652,7 +652,7 @@ matches one of the allowed values.
652652
653653=== "setting_cors_extra_origins.py"
654654
655- ```python hl_lines="5 11-12 34 "
655+ ```python hl_lines="7 14 15 38 "
656656 --8<-- "examples/event_handler_rest/src/setting_cors_extra_origins.py"
657657 ```
658658
@@ -943,7 +943,7 @@ You can compress with gzip and base64 encode your responses via `compress` param
943943
944944=== "compressing_responses_using_route.py"
945945
946- ```python hl_lines="17 27 "
946+ ```python hl_lines="19 29 "
947947 --8<-- "examples/event_handler_rest/src/compressing_responses_using_route.py"
948948 ```
949949
@@ -1154,7 +1154,7 @@ Let's assume you have `split_route.py` as your Lambda function entrypoint and ro
11541154 !!! info
11551155 This means all methods, including [middleware](#middleware) will work as usual.
11561156
1157- ```python hl_lines="5 13 16 25 28 "
1157+ ```python hl_lines="7 10 15 18 27 30 "
11581158 --8<-- "examples/event_handler_rest/src/split_route_module.py"
11591159 ```
11601160
@@ -1186,7 +1186,7 @@ When necessary, you can set a prefix when including a router object. This means
11861186
11871187=== "split_route_prefix_module.py"
11881188
1189- ```python hl_lines="13 25 "
1189+ ```python hl_lines="14 26 "
11901190 --8<-- "examples/event_handler_rest/src/split_route_prefix_module.py"
11911191 ```
11921192
0 commit comments