From d6b50938513c9883d60296d2998deb3004706481 Mon Sep 17 00:00:00 2001 From: LazyTaz <56768449+LazyTaz@users.noreply.github.com> Date: Tue, 15 Mar 2022 14:46:01 +0100 Subject: [PATCH] Update lsp.md "oin" -> "on" --- docs/lsp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/lsp.md b/docs/lsp.md index 305ad1f2b..49267c860 100644 --- a/docs/lsp.md +++ b/docs/lsp.md @@ -5,7 +5,7 @@ The goal of this library is to implement [Language Server Protocol](https://micr Included in this library is a full-fidelity `LanguageServer` but also full `LanguageClient` implementation that could be implemented in an editor, but mainly it is used to help make Unit Testing easier, more consistent (and maybe even fun!). # Concepts -The language server is built oin a few concepts. At it's core is the [MediatR](https://github.com/jbogard/MediatR) library that you will build language specific handlers around. Around that core is a bunch of knowledge of the LSP protocol +The language server is built on a few concepts. At it's core is the [MediatR](https://github.com/jbogard/MediatR) library that you will build language specific handlers around. Around that core is a bunch of knowledge of the LSP protocol with the goal of making it more ".NET" like and less protocol centric. LSP revolves around features ( eg Completion, Hover, etc ) that define the inputs (request object) the outputs (response object) as well as Client Capabilities and Server Registration Options.