Skip to content

Commit 9b27814

Browse files
committed
Bugfix
1 parent d1ad960 commit 9b27814

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,10 +327,10 @@ def example_polynomial_root_limits():
327327
print("Inputs:")
328328
print(f"c = {c}")
329329

330-
limits = polynomials.root_limits(c)
330+
root_limits = polynomials.root_limits(c)
331331

332332
print("Output:")
333-
print(f"limits = {limits}")
333+
print(f"limits = {root_limits}")
334334

335335

336336
@print_docstring

0 commit comments

Comments
 (0)