Skip to content

Commit 20fff3c

Browse files
authored
Merge pull request #249 from QuantEcon/i-246
Fix Userwarning
2 parents 9d384f8 + a54daac commit 20fff3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lectures/scalar_dynam.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def plot45(g, xmin, xmax, x0, num_arrows=6, var='x'):
365365
x = g(x)
366366
xticks.append(x)
367367
xtick_labels.append(r'${}_{}$'.format(var, str(i+1)))
368-
ax.plot((x, x), (0, x), 'k-', ls='dotted')
368+
ax.plot((x, x), (0, x), 'k', ls='dotted')
369369
370370
xticks.append(xmax)
371371
xtick_labels.append(xmax)

0 commit comments

Comments
 (0)