mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 00:33:59 +00:00
Math: Fix typo in Matrix->subtract() name
This commit is contained in:
parent
3aef4c5a09
commit
0b82d5c8d4
@ -103,7 +103,7 @@ class Matrix implements \ArrayAccess{
|
||||
return $result;
|
||||
}
|
||||
|
||||
public function substract(Matrix $matrix){
|
||||
public function subtract(Matrix $matrix){
|
||||
if($this->rows !== $matrix->getRows() or $this->columns !== $matrix->getColumns()){
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user