cs3110 / textbook

The CS 3110 Textbook, "OCaml Programming: Correct + Efficient + Beautiful"
Other
720 stars 132 forks source link

remove unused package during install step #158

Closed HaQadosch closed 9 months ago

HaQadosch commented 9 months ago

In the preface at the install chapter there is a isntall package with the following packages:

https://github.com/cs3110/textbook/blob/a2d49c53092e0931618185cf03fa2f5f697c26dd/src/chapters/preface/install.md?plain=1#L328C1-L330C4

opam install -y utop odoc ounit2 qcheck bisect_ppx menhir ocaml-lsp-server ocamlformat ocamlformat-rpc

The following message is being displayed

The `ocamlformat` package ships the RPC mode since version 0.22.4. This package is no longer necessary.

This PR removes that unused package.

clarksmr commented 9 months ago

Thank you!