Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-Authored-By: James A. Bednar <jbednar@users.noreply.github.com>
  • Loading branch information
philippjfr and jbednar committed Feb 27, 2020
1 parent c671820 commit c1dc495
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/user_guide/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ These guides provide detail about specific additional features in HoloViews:
`Working with renderers and plots <Plots_and_Renderers.html>`_
Using the ``Renderer`` and ``Plot`` classes for access to the plotting machinery.

`Using linked selections to cross-filter complex datasets <Linked_Brushing.html>`_
`Using linked brushing to cross-filter complex datasets <Linked_Brushing.html>`_
Explains how to use the `link_selections` helper to cross-filter multiple elements.

`Using Annotators to edit and label data <Annotators.html>`_
Expand Down
2 changes: 1 addition & 1 deletion holoviews/core/accessors.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def __call__(self, function, streams=[], link_inputs=True, dynamic=None,
keyword argument, or the supplied function is a
parameterized method.
per_element (bool, optional): Whether to apply per element
By default apply works on the any leaf nodes which
By default apply works on the leaf nodes, which
includes both elements and overlays. If set it will
apply directly to elements.
kwargs (dict, optional): Additional keyword arguments
Expand Down
2 changes: 1 addition & 1 deletion holoviews/core/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,7 @@ def unique_iterator(seq):

def lzip(*args):
"""
zip function which returns a list.
zip function that returns a list.
"""
return list(zip(*args))

Expand Down
2 changes: 1 addition & 1 deletion holoviews/selection.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class link_selections(_base_link_selections):
elements.""")

index_cols = param.List(default=None, doc="""
If provided selection switches to index mode where all queries
If provided, selection switches to index mode where all queries
are expressed solely in terms of discrete values along the
index_cols. All Elements given to link_selections must define the index_cols, either as explicit dimensions or by sharing an underlying Dataset that defines them.""")

Expand Down
2 changes: 1 addition & 1 deletion holoviews/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ class BoundsXY(LinkedStream):
class SelectionXY(BoundsXY):
"""
A stream representing the selection along the x-axis and y-axis.
Unlike a BoundsXY stream this stream return range or categorical
Unlike a BoundsXY stream, this stream returns range or categorical
selections.
"""

Expand Down

0 comments on commit c1dc495

Please sign in to comment.