Skip to content

Commit 610b754

Browse files
authored
Fixed spelling mistake "son" to "json"
Fixed aligning to the guidelines in https://docs.microsoft.com/en-us/contribute/code-in-docs#fenced-code-blocks
1 parent 787c38c commit 610b754

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/functions-reference-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Azure Functions expects a function to be a stateless method in your Python scrip
1717

1818
Data from triggers and bindings is bound to the function via method attributes using the `name` property defined in the *function.json* file. For example, the _function.json_ below describes a simple function triggered by an HTTP request named `req`:
1919

20-
:::code language="son" source="~/functions-quickstart-templates/Functions.Templates/Templates/HttpTrigger-Python/function.json":::
20+
:::code language="json" source="~/functions-quickstart-templates/Functions.Templates/Templates/HttpTrigger-Python/function.json":::
2121

2222
Based on this definition, the `__init__.py` file that contains the function code might look like the following example:
2323

0 commit comments

Comments
 (0)