Skip to content

Commit e79b840

Browse files
committed
Merge pull request #2 from breyed/patch-1
consistent exception messages
2 parents 547ef19 + f1c32e8 commit e79b840

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WebApiContrib.Formatting.MsgPack/MessagePackMediaTypeFormatter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public override bool CanReadType(Type type)
4545
public override bool CanWriteType(Type type)
4646
{
4747
if (type == null)
48-
throw new ArgumentNullException("Type is null");
48+
throw new ArgumentNullException("type is null");
4949

5050
return IsAllowedType(type);
5151
}

0 commit comments

Comments
 (0)