From 502a395e1a44a588fc070666bbbf15930158d281 Mon Sep 17 00:00:00 2001 From: shaunwbell Date: Mon, 6 Feb 2017 14:46:08 -0800 Subject: [PATCH] Update set_and_get.py Small correction to change comment for setting l2 from "thicker" to "thinner" as this is consistent with the actual output and arguments. --- examples/pylab_examples/set_and_get.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pylab_examples/set_and_get.py b/examples/pylab_examples/set_and_get.py index 7004481bce19..c0e3743a805f 100644 --- a/examples/pylab_examples/set_and_get.py +++ b/examples/pylab_examples/set_and_get.py @@ -77,7 +77,7 @@ l1, l2 = lines plt.setp(lines, linestyle='--') # set both to dashed plt.setp(l1, linewidth=2, color='r') # line1 is thick and red -plt.setp(l2, linewidth=1, color='g') # line2 is thicker and green +plt.setp(l2, linewidth=1, color='g') # line2 is thinner and green print('Line setters')