diff --git a/src/chordparser/editors/scales_editor.py b/src/chordparser/editors/scales_editor.py index e414abc..d250de9 100644 --- a/src/chordparser/editors/scales_editor.py +++ b/src/chordparser/editors/scales_editor.py @@ -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 -------- diff --git a/src/chordparser/music/keys.py b/src/chordparser/music/keys.py index e002c45..58d09bc 100644 --- a/src/chordparser/music/keys.py +++ b/src/chordparser/music/keys.py @@ -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)