Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
DedSec256 committed Aug 31, 2022
1 parent 1ff085d commit ff92b18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tests/FSharp.ApiDocs.Tests/files/FsLib1/OperatorsWithFsi.fs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module FsLib.OperatorsWithFsi

let ( <&> ) x y = x > y
let ( ?<? ) x y = x > y
let (<&>) x y = x > y
let (?<?) x y = x > y
let (<?) x = x
let (<?>) x = x
5 changes: 2 additions & 3 deletions tests/FSharp.ApiDocs.Tests/files/FsLib1/OperatorsWithFsi.fsi
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
module FsLib.OperatorsWithFsi

/// <summary>The binary operator 1</summary>
val ( <&> ): 'T -> 'T -> bool when 'T : comparison
val (<&>): 'T -> 'T -> bool when 'T: comparison

/// <summary>The binary operator 2</summary>
val ( ?<? ): x: 'T -> y: 'T -> bool when 'T : comparison
val (?<?): x: 'T -> y: 'T -> bool when 'T: comparison

/// <summary>The unary operator 1</summary>
val (<?): 'T -> 'T

/// <summary>The unary operator 2</summary>
val (<?>): x: 'T -> 'T

0 comments on commit ff92b18

Please sign in to comment.