Skip to content

Commit 93d9d65

Browse files
authored
Fix minor typos in README (#1415)
1 parent 4c57c6a commit 93d9d65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ Semantic highlighting support is enabled by default.
182182
> since OCaml-LSP 1.14.0
183183
184184
OCaml-LSP implements experimental semantic highlighting support (also known as
185-
semantic tokens support). The support can be activated by passing an evironment
185+
semantic tokens support). The support can be activated by passing an environment
186186
variable to OCaml-LSP:
187187

188188
- To enable non-incremental (expectedly slower but more stable) version, pass
@@ -245,7 +245,7 @@ type t = A | B of string option
245245
let f (v : t) = match v with | A -> _ | B (None) | B (Some _) -> _
246246
```
247247

248-
Importantly, note the undescores in place of expressions in each branch of the
248+
Importantly, note the underscores in place of expressions in each branch of the
249249
pattern match above. The underscores that occur in place of expressions are
250250
called "typed holes" - a concept explained below.
251251

0 commit comments

Comments
 (0)