automatic cargo CI changes

This commit is contained in:
cscherrNT 2024-06-27 11:53:26 +00:00 committed by github-actions[bot]
parent e87ae641f7
commit c12b1e7235
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ fn repl(conn: &mut SqliteConnection) -> anyhow::Result<()> {
loop {
lib::read_buf_interactive(&mut buf)?;
buf = buf.to_uppercase();
if buf.starts_with("HELP") || buf.starts_with("?") {
if buf.starts_with("HELP") || buf.starts_with('?') {
println!("{}", HELP_TEXT.bright_blue())
} else if buf.starts_with("EXIT") || buf.is_empty() {
break;