Skip to content

Commit a4d4aaa

Browse files
authored
Merge pull request #353 from QuantEcon/i-208
Fix Userwarning
2 parents 3e6b2c8 + d628121 commit a4d4aaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lectures/scalar_dynam.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def plot45(g, xmin, xmax, x0, num_arrows=6, var='x'):
268268
x = g(x)
269269
xticks.append(x)
270270
xtick_labels.append(r'${}_{}$'.format(var, str(i+1)))
271-
ax.plot((x, x), (0, x), 'k-', ls='dotted')
271+
ax.plot((x, x), (0, x), 'k', ls='dotted')
272272
273273
xticks.append(xmax)
274274
xtick_labels.append(xmax)

0 commit comments

Comments
 (0)