Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove duplicated word #5790

Merged
merged 1 commit into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/editors/vim.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ extensions that won't be available when not using the extension.

## nvim-metals

[`nvim-metals`](https://github.com/scalameta/nvim-metals) Is the the dedicated
[`nvim-metals`](https://github.com/scalameta/nvim-metals) Is the dedicated
Metals extension for the [built-in LSP
support](https://neovim.io/doc/user/lsp.html) in Neovim.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package scala.meta.internal.builds
import scala.meta.internal.builds.Digest.Status

/**
* Represents the the status of a `workspace/reload` or a `bloopInstall` request.
* Represents the status of a `workspace/reload` or a `bloopInstall` request.
*/
sealed abstract class WorkspaceLoadedStatus extends Product with Serializable {
import WorkspaceLoadedStatus._
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2468,7 +2468,7 @@ class MetalsLspService(
}

/**
* Returns the the definition location or reference locations of a symbol at a
* Returns the definition location or reference locations of a symbol at a
* given text document position. If the symbol represents the definition
* itself, this method returns the reference locations, otherwise this returns
* definition location. https://github.com/scalameta/metals/issues/755
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import org.eclipse.lsp4j.jsonrpc.messages.Message

/**
* Assigns an id to synthetic messages and fixes the id of
* non-synthetic ones to keep the the id sequence monotonic.
* non-synthetic ones to keep the id sequence monotonic.
*
* Additionally, adapts the request id for responses being produced
* to keep the whole procedure transparent for the caller.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package scala.meta.internal.pc

/**
* Represents the Compiler InitializationOptions that the client
* sends in during the `initialize` process. If the the client doesn't
* sends in during the `initialize` process. If the client doesn't
* doesn't explicity send in anything, we default everything to None to
* signify the client didn't set this. This will then default to what is
* currently set (more than likely the defaults) in the PresentationCompilerConfigImpl.
Expand Down