Skip to content

General clean up of existing docs #120

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
May 18, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Improve x/y axis key doc
  • Loading branch information
dstansby committed May 18, 2023
commit 8573b0b60201f3023572153df37032881b8080f7
4 changes: 2 additions & 2 deletions src/napari_matplotlib/scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def __init__(self, napari_viewer: napari.viewer.Viewer):
@property
def x_axis_key(self) -> Optional[str]:
"""
Key to access x axis data from the FeaturesTable.
Key for the x-axis data.
"""
return self._x_axis_key

Expand All @@ -139,7 +139,7 @@ def x_axis_key(self, key: Optional[str]) -> None:
@property
def y_axis_key(self) -> Optional[str]:
"""
Key to access y axis data from the FeaturesTable.
Key for the y-axis data.
"""
return self._y_axis_key

Expand Down