Skip to content

Commit

Permalink
Fix See Also references to follow documentation directory
Browse files Browse the repository at this point in the history
  • Loading branch information
titus-ong committed Jul 28, 2020
1 parent 81f3554 commit 55b6bcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/chordparser/editors/scales_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def create_scale(self, value, *args, **kwargs):
See Also
--------
chordparser.editors.keys_editor.KeyEditor.create_key : See the necessary parameters for creating a `Key`.
chordparser.KeyEditor.create_key : See the necessary parameters for creating a `Key`.
Examples
--------
Expand Down
2 changes: 1 addition & 1 deletion src/chordparser/music/keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __getattr__(self, attribute):
See Also
--------
chordparser.music.notes.Note : For a list of `Note` methods.
chordparser.Note : For a list of `Note` methods.
"""
if attribute in Note.__dict__:
return getattr(self.root, attribute)
Expand Down

0 comments on commit 55b6bcb

Please sign in to comment.