You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-triggers-bindings.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ A function has a single trigger and one or more bindings. The type of binding is
41
41
42
42
Triggers and bindings are defined differently depending on the development language. Make sure to select your language at the [top](#top) of the article.
43
43
44
-
Trigger and binding names are limited to alphanumeric characters and `_`, the underscore. Double underscores `__` are prohibited. These names are defined differently based on development language.
44
+
Trigger and binding names are limited to alphanumeric characters and `_`, the underscore.
45
45
46
46
This example shows an HTTP triggered function with an output binding that writes a message to an Azure Storage queue.
47
47
@@ -183,7 +183,7 @@ The way that the function is defined depends on the version of Python for Functi
183
183
184
184
### [v2](#tab/python-v2)
185
185
186
-
In Python for Functions version 2, you define the function directly in code using decorators. The binding name is defined by arg_name.
186
+
In Python for Functions version 2, you define the function directly in code using decorators.
0 commit comments