Skip to content

Commit

Permalink
Fixed doc typo (y_initial -> y_0)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshKarpel committed Jan 25, 2018
1 parent 51f92c1 commit 045451c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ In code, that looks like (using ``lambda`` functions for simplicity):

solver = IDESolver(
x = np.linspace(0, 1, 100),
y_initial = 0,
y_0 = 0,
c = lambda x, y: y - (.5 * x) + (1 / (1 + x)) - np.log(1 + x),
d = lambda x: 1 / (np.log(2)) ** 2,
k = lambda x, s: x / (1 + s),
Expand Down

0 comments on commit 045451c

Please sign in to comment.