fixed a misspell in docs (#1217)

# Changes
- bugs: variable `body` was misspelled
This commit is contained in:
Chengzhi Yang 2022-09-07 16:39:18 +08:00 committed by GitHub
parent 4301ca2d42
commit fc54831ff0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ for more information.
#### Example #### Example
```python ```python
def main(context: Context): def main(context: Context):
data = { "message": "Howdy!" } body = { "message": "Howdy!" }
headers = { "content-type": "application/json" } headers = { "content-type": "application/json" }
return body, 200, headers return body, 200, headers
``` ```