Skip to content

Commit 04b6881

Browse files
committed
Fix typo in the prompt string
1 parent 13991f0 commit 04b6881

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/rewrite/RewriteRecipeRepository.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ private CompletableFuture<WorkspaceEdit> askForPreview(WorkspaceEdit workspaceEd
439439
final MessageActionItem applyChanges = new MessageActionItem("Apply");
440440
ShowMessageRequestParams messageParams = new ShowMessageRequestParams();
441441
messageParams.setType(MessageType.Info);
442-
messageParams.setMessage("Do you want to preview chnages before applying or apply right away?");
442+
messageParams.setMessage("Do you want to preview changes before applying or apply right away?");
443443
messageParams.setActions(List.of(applyChanges, previewChanges));
444444
return server.getClient().showMessageRequest(messageParams).thenApply(previewChanges::equals);
445445
} else {

0 commit comments

Comments
 (0)