Skip to content

Commit 2be473e

Browse files
committed
Fix typo in exception message.
1 parent 34f621d commit 2be473e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MySqlConnector/MySql.Data.MySqlClient/MySqlCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ private bool NeedsPrepare(out Exception? exception)
130130

131131
if (CommandType != CommandType.StoredProcedure && CommandType != CommandType.Text)
132132
{
133-
exception = new NotSupportedException("Only CommandType.Text and CommandType.StoredProcedure is currently supported by MySqlCommand.Prepare");
133+
exception = new NotSupportedException("Only CommandType.Text and CommandType.StoredProcedure are currently supported by MySqlCommand.Prepare.");
134134
return false;
135135
}
136136

0 commit comments

Comments
 (0)