From d2803f396e1ee9ec25dbe7623dd999ba031cd512 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=85smund=20Hjulstad?= Date: Wed, 28 Jan 2015 13:40:50 +0100 Subject: [PATCH] Fixed inconsistent plurals ('sticks'->'stick'). --- seaborn/distributions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seaborn/distributions.py b/seaborn/distributions.py index 3c5cb641f1..6537e71298 100644 --- a/seaborn/distributions.py +++ b/seaborn/distributions.py @@ -1341,7 +1341,7 @@ def violinplot(x=None, y=None, hue=None, data=None, order=None, hue_order=None, inner : {{"box", "quartile", "point", "stick", None}}, optional Representation of the datapoints in the violin interior. If ``box``, draw a miniature boxplot. If ``quartiles``, draw the quartiles of the - distribution. If ``points`` or ``sticks``, show each underlying + distribution. If ``point`` or ``stick``, show each underlying datapoint. Using ``None`` will draw unadorned violins. split : bool, optional When using hue nesting with a variable that takes two levels, setting