From bc352358006ba629b374446950fe1186ffdf781b Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 19 Jun 2024 10:14:56 -0400 Subject: [PATCH] docs: Remove `$` in shell commands (#13266) This PR removes the `$` from the shell commands in the OCaml docs, as we don't use them anywhere else. Release Notes: - N/A --- docs/src/languages/ocaml.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/languages/ocaml.md b/docs/src/languages/ocaml.md index c80ec98963..6670b942e1 100644 --- a/docs/src/languages/ocaml.md +++ b/docs/src/languages/ocaml.md @@ -18,7 +18,7 @@ Once you install opam and setup a switch with your development environment as pe By now you should have `ocamllsp` installed, you can verify so by running ```sh -$ ocamllsp --help +ocamllsp --help ``` in your terminal. If you get a help message, you're good to go. If not, please revisit the installation instructions for `ocamllsp` and ensure it's properly installed. @@ -28,7 +28,7 @@ With that aside, we can now launch Zed. Given how the OCaml package manager work Once you have the cli, simply from a terminal, navigate to your project and run ```sh -$ zed . +zed . ``` Voila! You should have Zed running with OCaml support, no additional setup required.