Skip to content

Commit 99822c1

Browse files
committed
fix
1 parent 648deb5 commit 99822c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lectures/olg.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ Let's define a function `k_next` that finds the value of $k_{t+1}$.
228228

229229
```{code-cell} ipython3
230230
def k_next(model, k):
231-
return optimize.newton(solve_for_k_2, k, args=(model, k))
231+
return optimize.newton(solve_for_k, k, args=(model, k))
232232
```
233233

234234
```{code-cell} ipython3

0 commit comments

Comments
 (0)