Skip to content

Commit 8358a15

Browse files
committed
Fix comments in Arithmetic
1 parent c2db0de commit 8358a15

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/GraphBLAS-sharp.Backend/Quotes/Arithmetic.fs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace GraphBLAS.FSharp.Backend.Quotes
1+
namespace GraphBLAS.FSharp.Backend.Quotes
22

33
open GraphBLAS.FSharp.Backend.Objects
44

@@ -229,15 +229,14 @@ module ArithmeticOperations =
229229

230230
let float32Mul = createPair 0.0f (*) <@ (*) @>
231231

232-
// other
232+
// other operations
233233
let less<'a when 'a: comparison> =
234234
<@ fun (x: 'a option) (y: 'a option) ->
235235
match x, y with
236236
| Some x, Some y -> if (x < y) then Some 1 else None
237237
| Some x, None -> Some 1
238238
| _ -> None @>
239239

240-
//TODO: noneValue
241240
let min<'a when 'a: comparison> =
242241
<@ fun (x: 'a option) (y: 'a option) ->
243242
match x, y with

0 commit comments

Comments
 (0)