Part of the work for a doc handler

This commit is contained in:
greg
2018-09-22 00:24:27 -07:00
parent 693766fa59
commit f67793308e
3 changed files with 11 additions and 3 deletions

View File

@@ -156,7 +156,7 @@ pub trait ProgrammingLanguageInterface {
fn custom_interpreter_directives_help(&self) -> String {
format!(">> No custom interpreter directives specified <<")
}
fn get_doc(&mut self, _commands: &Vec<&str>) -> Option<String> {
fn get_doc(&self, _commands: &Vec<&str>) -> Option<String> {
None
}
}