Change wording of default repl_request handler

This commit is contained in:
greg 2019-03-19 18:46:24 -07:00
parent 14c08bbcdb
commit 81323cafd4
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ pub trait ProgrammingLanguageInterface {
}
fn repl_request(&self, repl_request: String) -> String {
format!(">> No custom interpreter directives or help info specified <<")
format!("<<No custom interpreter directives or help info specified>>")
}
}