Skip to content

Commit d497cba

Browse files
committed
Fix typo.
1 parent ecc565b commit d497cba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

notes/K-Functions_shortened.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -620,8 +620,8 @@
620620
"s1 = (-b + math.sqrt(b**2 - 4*a*c) ) / (2*a) \n",
621621
"s2 = (-b - math.sqrt(b**2 - 4*a*c) ) / (2*a) \n",
622622
"\n",
623-
"print(f\"Solution 1: {x1:.3f}\")\n",
624-
"print(f\"Solution 2: {x2:.3f}\")"
623+
"print(f\"Solution 1: {s1:.3f}\")\n",
624+
"print(f\"Solution 2: {s2:.3f}\")"
625625
]
626626
},
627627
{

0 commit comments

Comments
 (0)