Fix typo in plugins.md

This commit is contained in:
TheophileDiot 2022-09-29 15:47:13 +02:00
parent e3d0120a0c
commit a9865f8502

View file

@ -417,7 +417,7 @@ Please note that every form submission is protected via a CSRF token, you will n
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
```
Retrieving user submitted data is pretty simple, thank to the request module provided by Flask :
Retrieving user submitted data is pretty simple, thanks to the request module provided by Flask :
```python
from flask import request