Skip to content

Commit b6fe4ad

Browse files
committed
Fix bug Dot.Invoke #27
1 parent 36ab4ad commit b6fe4ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/FsMath/VectorOps.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ module VectorOpsSymbols =
4343
let inline (.*) a b = Multiply.Invoke(a, b)
4444
let inline (./) a b = Divide.Invoke(a, b)
4545
let inline (.^) a b = Power.Invoke(a, b)
46-
let inline ( @ ) a b = Power.Invoke(a, b)
46+
let inline ( @ ) a b = Dot.Invoke(a, b)
4747
// Dot product ( @ )

0 commit comments

Comments
 (0)