mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-15 16:05:28 +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;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function substract(Matrix $matrix){
|
public function subtract(Matrix $matrix){
|
||||||
if($this->rows !== $matrix->getRows() or $this->columns !== $matrix->getColumns()){
|
if($this->rows !== $matrix->getRows() or $this->columns !== $matrix->getColumns()){
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user