8000 Minor · DiffSharp/DiffSharp@a353f68 · GitHub
[go: up one dir, main page]

Skip to content

Commit a353f68

Browse files
committed
Minor
1 parent 2587396 commit a353f68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/DiffSharp/AD.Float32.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ type D =
117117
override d.CompareTo(other) =
118118
match other with
119119
| :? D as d2 -> compare ((float32) d) ((float32) d2)
120-
| _ -> invalidArg "" "Cannot compare thid D with another type."
120+
| _ -> invalidArg "" "Cannot compare this D with another type."
121121
override d.Equals(other) =
122122
match other with
123123
| :? D as d2 -> compare ((float32) d) ((float32) d2) = 0

src/DiffSharp/AD.Float64.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ type D =
117117
override d.CompareTo(other) =
118118
match other with
119119
| :? D as d2 -> compare ((float) d) ((float) d2)
120-
| _ -> invalidArg "" "Cannot compare thid D with another type."
120+
| _ -> invalidArg "" "Cannot compare this D with another type."
121121
override d.Equals(other) =
122122
match other with
123123
| :? D as d2 -> compare ((float) d) ((float) d2) = 0

0 commit comments

Comments
 (0)
0