Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/modules/language-guide/pages/compiler-ref.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ You can use the following options with the `+moc+` command.

//|`+-iR+` |Interprets the lowered code.

|`+--map+` |Outputs a Javascript source map.
|`+--map+` |Outputs a JavaScript source map.

//|`+-no-await+` |Disables await-lowering (with -iR).

Expand Down
2 changes: 1 addition & 1 deletion doc/modules/language-guide/pages/motoko.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ include::../examples/factorial.mo[lines=9..-1]
[.card]
== Modern type system

Motoko has been designed to be intuitive to those familiar with Javascript and other popular languages, but offers modern features such as sound structural types, generics, variant types, and checked pattern matching.
Motoko has been designed to be intuitive to those familiar with JavaScript and other popular languages, but offers modern features such as sound structural types, generics, variant types, and checked pattern matching.

[source,motoko]
----
Expand Down
2 changes: 1 addition & 1 deletion src/exes/didc.ml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ let out_file = ref ""

let argspec =
[
"--js", Arg.Unit (set_mode Js), " output Javascript binding";
"--js", Arg.Unit (set_mode Js), " output JavaScript binding";
"--check", Arg.Unit (set_mode Check), " type-check only";
"--pp", Arg.Unit (set_mode PrettyPrint), " Pretty print did file";
"-v", Arg.Set Flags.verbose, " verbose output";
Expand Down