Skip to content

Commit

Permalink
misc: Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JDBetteridge committed Dec 20, 2024
1 parent 7114100 commit 9630b13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devito/symbolics/printer.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def _print_Pow(self, expr):
return f'{self._print_Float(Float(1.0))}/' + \
f'{self.parenthesize(expr.base, PREC)}'
elif equal_valued(expr.exp, 0.5):
return f'{self._ns}sqrt{suffix}({self._print(expr.base)}'
return f'{self._ns}sqrt{suffix}({self._print(expr.base)})'
elif expr.exp == S.One/3 and self.standard != 'C89':
return f'{self._ns}cbrt{suffix}({self._print(expr.base)})'
else:
Expand Down

0 comments on commit 9630b13

Please sign in to comment.