Skip to content

Commit

Permalink
Typo (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
Beakerboy committed Jul 15, 2021
1 parent f6ea9f9 commit 0d8dee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Number/Complex.php
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ public function pow($c): Complex
{
if (\is_numeric($c)) {
$tmp = new Complex(0, $c * $this->arg());
return $tmp->exp()->multiply($this->abs() ** $c); throw new Exce
return $tmp->exp()->multiply($this->abs() ** $c);
}

if ($c instanceof Complex) {
Expand Down

0 comments on commit 0d8dee6

Please sign in to comment.