From 24caae6c60f71fc071a36ace27f46c79d325c2bf Mon Sep 17 00:00:00 2001 From: Cuihtlauac Alvarado Date: Thu, 1 Sep 2022 20:08:42 +0200 Subject: [PATCH] Fix typos in README (#284) This fixes https://github.com/rgrinberg/opium/issues/272. * Fix typo in dune exec command line. * Fix text mentioning available options. The correct flag is --help as -h is used to specify the host. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 86cebe6..4638dbb 100644 --- a/README.md +++ b/README.md @@ -195,10 +195,10 @@ $ dune build example/simple_middleware/main.ml ``` Here we also use the ability of Opium to generate a cmdliner term to run your -app. Run your executable with `-h` to see the options that are available to you. +app. Run your executable with `--help` to see the options that are available to you. For example: ``` # run in debug mode on port 9000 -$ dune exec dune build example/simple_middleware/main.exe -- -p 9000 -d +$ dune exec example/simple_middleware/main.exe -- -p 9000 -d ```