Skip to content

Commit

Permalink
Updated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskonnertz committed Mar 18, 2018
1 parent 8674357 commit 7196e4e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

/**
* Operator for mathematical division.
* Example: "6/2" => 3, "6/0" => InvalidArgumentException
* Example: "6/2" => 3, "6/0" => http://php.net/manual/en/class.divisionbyzeroerror.php
* @see https://en.wikipedia.org/wiki/Division_(mathematics)
*
* @package ChrisKonnertz\StringCalc\Symbols\Concrete\Operators
Expand All @@ -32,4 +32,4 @@ public function operate($leftNumber, $rightNumber)
return $leftNumber / $rightNumber;
}

}
}

0 comments on commit 7196e4e

Please sign in to comment.