Fix parameter name in exception.

This commit is contained in:
Jon Skeet 2015-08-10 09:03:43 +01:00
parent 5be01ee65b
commit 4deea8c231

View File

@ -737,7 +737,7 @@ namespace Google.Protobuf.Collections
{
if (index < 0)
{
throw new ArgumentOutOfRangeException("arrayIndex");
throw new ArgumentOutOfRangeException("index");
}
if (index + Count >= array.Length)
{