From 93d9d6554fc127d475c4c27d878552c88d92d43d Mon Sep 17 00:00:00 2001 From: Chase Johnson Date: Thu, 5 Dec 2024 12:48:54 -0600 Subject: [PATCH] Fix minor typos in README (#1415) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 843596485..d653aa8c4 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,7 @@ Semantic highlighting support is enabled by default. > since OCaml-LSP 1.14.0 OCaml-LSP implements experimental semantic highlighting support (also known as -semantic tokens support). The support can be activated by passing an evironment +semantic tokens support). The support can be activated by passing an environment variable to OCaml-LSP: - To enable non-incremental (expectedly slower but more stable) version, pass @@ -245,7 +245,7 @@ type t = A | B of string option let f (v : t) = match v with | A -> _ | B (None) | B (Some _) -> _ ``` -Importantly, note the undescores in place of expressions in each branch of the +Importantly, note the underscores in place of expressions in each branch of the pattern match above. The underscores that occur in place of expressions are called "typed holes" - a concept explained below.