Skip to content

Commit 489455e

Browse files
committed
chore(src/main/*): Fix doc details
1 parent 18c0e51 commit 489455e

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

src/main/learnocaml_client.ml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -641,9 +641,9 @@ let man p =
641641
`P p;
642642
`S s_options;
643643
`S s_authors;
644-
`P "Learn OCaml is written by OCamlPro. Its main authors are Benjamin Canou, \
645-
Çağdaş Bozman, Grégoire Henry and Louis Gesbert. It is licensed under \
646-
the MIT License.";
644+
`P "The original authors are Benjamin Canou, \
645+
Çağdaş Bozman, Grégoire Henry and Louis Gesbert (OCamlPro). \
646+
It is licensed under the MIT License.";
647647
`S s_bugs;
648648
`P "Bugs should be reported to \
649649
$(i,https://github.com/ocaml-sf/learn-ocaml/issues)";
@@ -1240,8 +1240,8 @@ module Main = struct
12401240
let man =
12411241
[
12421242
`S s_description;
1243-
`P "Learn-ocaml CLI that allows to communicate directly with Learn-ocaml server \
1244-
in the same way as web application does. Default command is $(b,grade). \
1243+
`P "A Learn-ocaml CLI that allows one to communicate directly with a Learn-ocaml server \
1244+
in the same way as the web application does. Default command is $(b,grade). \
12451245
Use either '$(b,learn-ocaml-client <command> --help)' for more information on a specific command.";
12461246
`S s_commands;
12471247
`S "GRADE";

src/main/learnocaml_main.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,8 +453,8 @@ let man =
453453
`S s_environment;
454454
`S s_authors;
455455
`P "The original authors are Benjamin Canou, \
456-
Çağdaş Bozman, Grégoire Henry and Louis Gesbert. It is licensed under \
457-
the MIT License.";
456+
Çağdaş Bozman, Grégoire Henry and Louis Gesbert (OCamlPro). \
457+
Learn-OCaml is licensed under the MIT License.";
458458
`S s_bugs;
459459
`P "Bugs should be reported to \
460460
$(i,https://github.com/ocaml-sf/learn-ocaml/issues)";

src/main/learnocaml_server_main.ml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ let man =
6363
build) beforehand.";
6464
`S s_options;
6565
`S s_authors;
66-
`P "Learn OCaml is written by OCamlPro. Its main authors are Benjamin Canou, \
67-
Çağdaş Bozman, Grégoire Henry and Louis Gesbert. It is licensed under \
68-
the MIT License.";
66+
`P "The original authors are Benjamin Canou, \
67+
Çağdaş Bozman, Grégoire Henry and Louis Gesbert (OCamlPro). \
68+
Learn-OCaml is licensed under the MIT License.";
6969
`S s_bugs;
7070
`P "Bugs should be reported to \
7171
$(i,https://github.com/ocaml-sf/learn-ocaml/issues)";
@@ -104,11 +104,11 @@ let main_info =
104104
~exits
105105
~sdocs:Manpage.s_options
106106
~version:Learnocaml_api.version
107-
"learn-ocaml"
107+
"learn-ocaml-server"
108108

109109

110110
let main_term = Term.(const main $ Server_args.term app_dir base_url)
111-
111+
112112
let () =
113113
match
114114
Cmd.eval_value ~catch:false (Cmd.v main_info main_term)

0 commit comments

Comments
 (0)