Skip to content

Commit

Permalink
Fix minor typos in README
Browse files Browse the repository at this point in the history
  • Loading branch information
cjohnson19 committed Dec 5, 2024
1 parent 4c57c6a commit 99b6c33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.

Expand Down

0 comments on commit 99b6c33

Please sign in to comment.