From 3767304d7b25598d71a7112dd3704f8e221acb59 Mon Sep 17 00:00:00 2001 From: Carlos H Brandt Date: Sun, 1 Sep 2019 16:07:40 +0200 Subject: [PATCH] [docs] Fix typos in docstring (#3939) --- holoviews/operation/datashader.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/holoviews/operation/datashader.py b/holoviews/operation/datashader.py index 8145bd54e8..d68cd9e42e 100644 --- a/holoviews/operation/datashader.py +++ b/holoviews/operation/datashader.py @@ -75,14 +75,14 @@ class ResamplingOperation(LinkableOperation): if set to None.""") y_range = param.NumericTuple(default=None, length=2, doc=""" - The x_range as a tuple of min and max y-value. Auto-ranges + The y-axis range as a tuple of min and max y value. Auto-ranges if set to None.""") x_sampling = param.Number(default=None, doc=""" - Specifies the smallest allowed sampling interval along the y-axis.""") + Specifies the smallest allowed sampling interval along the x axis.""") y_sampling = param.Number(default=None, doc=""" - Specifies the smallest allowed sampling interval along the y-axis.""") + Specifies the smallest allowed sampling interval along the y axis.""") target = param.ClassSelector(class_=Image, doc=""" A target Image which defines the desired x_range, y_range,