Skip to content

Commit

Permalink
Remove the fixed OCaml version in dev instructions (#1362)
Browse files Browse the repository at this point in the history
Opam should automatically choose the latest supported OCaml version
  • Loading branch information
voodoos authored Aug 23, 2024
1 parent 15583da commit 1509ff4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ type point = {x: int; y: int}
Hovering over the above will
display:
```
ocaml type point = { x : int; y : int }
ocaml type point = { x : int; y : int }
syntax Record type:
Allows you to define variants with a fixed set of fields, and all of the
constructors for a record variant type must have the same fields. See
Expand All @@ -328,7 +328,7 @@ Manual
The documentation is gotten from the Merlin engine which receives
the nodes under the cursor and infers what the syntax may be about, and
displays the required information along with links to the manual for further
reading.
reading.

Syntax Documentation is an optional feature and can be activated by
using the LSP config system with the key called `syntaxDocumentation` and can
Expand Down Expand Up @@ -356,7 +356,7 @@ cd ocaml-lsp
git submodule update --init --recursive

# create local switch (or use global one)
opam switch --yes create . ocaml-base-compiler.4.14.0
opam switch --yes create .

# don't forget to set your environment to use the local switch
eval $(opam env)
Expand Down

0 comments on commit 1509ff4

Please sign in to comment.