From fc54831ff052c1ce46f3cd18ee4dc0088a672203 Mon Sep 17 00:00:00 2001 From: Chengzhi Yang Date: Wed, 7 Sep 2022 16:39:18 +0800 Subject: [PATCH] fixed a misspell in docs (#1217) # Changes - bugs: variable `body` was misspelled --- docs/function-developers/python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/function-developers/python.md b/docs/function-developers/python.md index 4aa6c210..8d0d09ad 100644 --- a/docs/function-developers/python.md +++ b/docs/function-developers/python.md @@ -122,7 +122,7 @@ for more information. #### Example ```python def main(context: Context): - data = { "message": "Howdy!" } + body = { "message": "Howdy!" } headers = { "content-type": "application/json" } return body, 200, headers ```