Skip to content

Commit 4078bfa

Browse files
authored
fix indentation
1 parent 02579c1 commit 4078bfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MongoDB.Bson/Serialization/BinaryVectorWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static byte[] WriteToBytes<TItem>(ReadOnlySpan<TItem> vectorData, BinaryV
3939
switch (binaryVectorDataType)
4040
{
4141
case BinaryVectorDataType.Float32:
42-
byte[] result;
42+
byte[] result;
4343
var length = vectorData.Length * 4;
4444
result = new byte[2 + length];
4545
result[0] = (byte)binaryVectorDataType;

0 commit comments

Comments
 (0)