Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 authored Jul 27, 2023
1 parent 98c8436 commit 14a8d1e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion spyder/plugins/completion/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,8 @@ def get_name() -> str:
@staticmethod
def get_description() -> str:
return _('Handle code completion, analysis, formatting, introspection, '
'folding and more via the Language Server Protocol.')
'folding and more via the Language Server Protocol and other '
'providers.')

@classmethod
def get_icon(cls):
Expand Down
4 changes: 3 additions & 1 deletion spyder/plugins/outlineexplorer/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ def get_name() -> str:
@staticmethod
def get_description() -> str:
"""Return the description of the outline explorer widget."""
return _("Explore functions, classes and methods in the current file.")
return _("Explore functions, classes and methods in open files. Note "
"that if you disable the 'Completions and linting' plugin, "
"this one won't work.")

@classmethod
def get_icon(cls):
Expand Down

0 comments on commit 14a8d1e

Please sign in to comment.