diff options
Diffstat (limited to 'src/cli.rs')
| -rw-r--r-- | src/cli.rs | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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); |
