We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2fefc0 commit 21c8e20Copy full SHA for 21c8e20
architecture/service-container.md
@@ -44,7 +44,7 @@ The service container is available in the `Request` object and can be retrieved
44
45
```python
46
def show(self, request: Request):
47
- request.app() # will return the service container
+ request.app # will return the service container
48
```
49
50
### Simple Binding
@@ -218,7 +218,7 @@ def randomFunction(view: View):
218
print(view)
219
220
221
- request.app().resolve(randomFunction) # Will print the View object
+ request.app.resolve(randomFunction) # Will print the View object
222
223
224
{% hint style="warning" %}
0 commit comments