Skip to content

Commit

Permalink
Removed Old Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
robiot committed Sep 15, 2021
1 parent 63a04dc commit 1c42a01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/listener/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pub fn listen(opts: &utils::Opts) -> std::io::Result<()> {
let t = pipe_thread(stream.try_clone().unwrap(), std::io::stdout());
let mut rl = Editor::<()>::new();
loop {
let readline = rl.readline(">> "); // &buffer[..len] ?
let readline = rl.readline(">> ");
match readline {
Ok(command) => {
rl.add_history_entry(command.as_str());
Expand Down

0 comments on commit 1c42a01

Please sign in to comment.