s/root module/main module/g

This commit is contained in:
Richard Feldman 2022-07-24 09:39:10 -04:00
parent 0629b3c279
commit c5f04aaf73
No known key found for this signature in database
GPG key ID: 7E4127D1E4241798

View file

@ -171,7 +171,7 @@ pub fn build_app<'a>() -> Command<'a> {
) )
) )
.subcommand(Command::new(CMD_TEST) .subcommand(Command::new(CMD_TEST)
.about("Run all top-level `expect`s in a root module and any modules it imports.") .about("Run all top-level `expect`s in a main module and any modules it imports.")
.arg(flag_optimize.clone()) .arg(flag_optimize.clone())
.arg(flag_max_threads.clone()) .arg(flag_max_threads.clone())
.arg(flag_opt_size.clone()) .arg(flag_opt_size.clone())
@ -183,7 +183,7 @@ pub fn build_app<'a>() -> Command<'a> {
.arg(flag_valgrind.clone()) .arg(flag_valgrind.clone())
.arg( .arg(
Arg::new(ROC_FILE) Arg::new(ROC_FILE)
.help("The .roc file for the root module") .help("The .roc file for the main module")
.allow_invalid_utf8(true) .allow_invalid_utf8(true)
.required(false) .required(false)
.default_value(DEFAULT_ROC_FILENAME) .default_value(DEFAULT_ROC_FILENAME)