aboutsummaryrefslogtreecommitdiff
path: root/src/cli.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli.rs')
-rw-r--r--src/cli.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 7be3fd4..b408dae 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -5,7 +5,7 @@ pub enum Action {
NewConfig,
NewState,
DumpTrajectory,
- DumpLearner,
+ DumpIntuition,
Run,
}
@@ -25,8 +25,8 @@ Options:
--new-config Write a default config file and exit.
--new-state Write a default state file and exit.
--dump-trajectory Dump the play trajectory as JSON to stdout.
- --dump-learner Dump learner weights as JSON to stdout.
-<no option> Suggest and play the next album"
+ --dump-intuition Dump intuition data as JSON to stdout.
+ <no option> Suggest and play the next album"
);
}
@@ -48,7 +48,7 @@ pub fn parse() -> Option<Action> {
Some("--new-config") => Some(Action::NewConfig),
Some("--new-state") => Some(Action::NewState),
Some("--dump-trajectory") => Some(Action::DumpTrajectory),
- Some("--dump-learner") => Some(Action::DumpLearner),
+ Some("--dump-intuition") => Some(Action::DumpIntuition),
Some(unknown) => {
eprintln!("Unknown option: {unknown}");
std::process::exit(1);