Skip to content

Commit 16755fa

Browse files
committed
Change function name mat_mul -> matmul
1 parent 927208c commit 16755fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/stdlib/operator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ mod _operator {
139139

140140
/// Return a @ b
141141
#[pyfunction]
142-
fn mat_mul(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult {
142+
fn matmul(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult {
143143
vm._matmul(&a, &b)
144144
}
145145

0 commit comments

Comments
 (0)