Skip to content

Commit

Permalink
Updated error message [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Jun 21, 2024
1 parent 3a96455 commit 3b283ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Pgvector/SparseVector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public SparseVector(int dimensions, ReadOnlyMemory<int> indices, ReadOnlyMemory<
{
if (indices.Length != values.Length)
{
throw new ArgumentException("indices and values must be same length");
throw new ArgumentException("indices and values must be the same length");
}

Dimensions = dimensions;
Expand Down

0 comments on commit 3b283ce

Please sign in to comment.