Skip to content

Commit e7fb323

Browse files
authored
Apply suggestions from code review
1 parent 6d1fa9e commit e7fb323

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/functions-bindings-azure-mysql-trigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ ON UPDATE CURRENT_TIMESTAMP;
200200

201201
The MySQL trigger binds to a `IReadOnlyList<MySqlChange<T>>`, a list of `MySqlChange` objects each with two properties:
202202
- **Item:** the item that was changed. The type of the item should follow the table schema as seen in the `Product` class.
203-
- **Operation:** a value from `MySqlChangeOperation` enum. The possible values is `Update` for both insert and update.
203+
- **Operation:** a value from `MySqlChangeOperation` enum. The possible value is `Update` for both insert and update.
204204

205205
The following example shows a [C# function](functions-dotnet-class-library.md) that is invoked when there are changes to the `Products` table:
206206

0 commit comments

Comments
 (0)