Skip to content

Commit 72dacda

Browse files
committed
Fixes from melpa review
1 parent 20096b7 commit 72dacda

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Besides the `lsp-mode` features, `lsp-dart` implements the [custom methods featu
5252
* `lsp-dart-only-analyze-projects-with-open-files` - analysis will only be performed for projects that have open files rather than the root workspace folder.
5353
* `lsp-dart-suggest-from-unimported-libraries` - completion will not include symbols that are not already imported into the current file.
5454
* `lsp-dart-closing-labels` - Enable the closing labels feature on server lsp.
55-
* `lsp-dart-closing-labels-prefix` - The prefix string to be concatened with the closing label.
55+
* `lsp-dart-closing-labels-prefix` - The prefix string to be concatenated with the closing label.
5656
* `lsp-dart-closing-labels-size` - The font size factor to be multiplied by the closing labels font size.
5757
* `lsp-dart-outline` - Enable the outline tree view feature on server lsp.
5858
* `lsp-dart-flutter-outline` - Enable the Flutter outline tree view feature on server lsp.

lsp-dart.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ When nil, it will try to find the dart sdk from the dart or flutter executables
4242
in the PATH env."
4343
:group 'lsp-dart
4444
:risky t
45-
:type 'directory)
45+
:type '(choice directory nil))
4646

4747
(defcustom lsp-dart-server-command nil
4848
"The analysis_server executable to use."
@@ -71,7 +71,7 @@ be sent with information to render editor closing labels."
7171
:group 'lsp-dart)
7272

7373
(defcustom lsp-dart-closing-labels-prefix " "
74-
"The prefix string to be concatened with the closing label."
74+
"The prefix string to be concatenated with the closing label."
7575
:type 'string
7676
:group 'lsp-dart)
7777

0 commit comments

Comments
 (0)