Skip to content

Commit 50a3b3e

Browse files
authored
Merge pull request #9834 from aaronpowell/patch-1
Comtain -> Contain
2 parents 9786ca7 + e62d37f commit 50a3b3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/functions-dotnet-class-library.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public static class SimpleExample
5858
}
5959
```
6060

61-
The `FunctionName` attribute marks the method as a function entry point. The name must be unique within a project, start with a letter and only comtain letters, numbers, `_` and `-`, up to 127 characters in length. Project templates often create a method named `Run`, but the method name can be any valid C# method name.
61+
The `FunctionName` attribute marks the method as a function entry point. The name must be unique within a project, start with a letter and only contain letters, numbers, `_` and `-`, up to 127 characters in length. Project templates often create a method named `Run`, but the method name can be any valid C# method name.
6262

6363
The trigger attribute specifies the trigger type and binds input data to a method parameter. The example function is triggered by a queue message, and the queue message is passed to the method in the `myQueueItem` parameter.
6464

0 commit comments

Comments
 (0)