Skip to content

Commit c97935c

Browse files
committed
Remove the fixed OCaml version in dev instructions
Opam should automatically choose the latest supported OCaml version
1 parent 15583da commit c97935c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ type point = {x: int; y: int}
319319
Hovering over the above will
320320
display:
321321
```
322-
ocaml type point = { x : int; y : int }
322+
ocaml type point = { x : int; y : int }
323323
syntax Record type:
324324
Allows you to define variants with a fixed set of fields, and all of the
325325
constructors for a record variant type must have the same fields. See
@@ -328,7 +328,7 @@ Manual
328328
The documentation is gotten from the Merlin engine which receives
329329
the nodes under the cursor and infers what the syntax may be about, and
330330
displays the required information along with links to the manual for further
331-
reading.
331+
reading.
332332

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

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

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

0 commit comments

Comments
 (0)