Skip to content

Commit c2db0de

Browse files
committed
Upper case in error messages
1 parent 1f54823 commit c2db0de

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/GraphBLAS-sharp.Backend/Common/ClArray.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ module ClArray =
390390
fun (processor: MailboxProcessor<_>) (values: ClArray<'a>) (positions: ClArray<int>) (result: ClArray<'b>) ->
391391

392392
if values.Length <> positions.Length then
393-
failwith "lengths must be the same"
393+
failwith "Lengths must be the same"
394394

395395
let ndRange =
396396
Range1D.CreateValid(values.Length, workGroupSize)
@@ -462,7 +462,7 @@ module ClArray =
462462

463463
if firstValues.Length <> secondValues.Length
464464
|| secondValues.Length <> positions.Length then
465-
failwith "lengths must be the same"
465+
failwith "Lengths must be the same"
466466

467467
let ndRange =
468468
Range1D.CreateValid(firstValues.Length, workGroupSize)

0 commit comments

Comments
 (0)