fix(builtins): make help pub
Acked-by: cpli <dev@cpli.in> Signed-off-by: Charlotte Meyer <dev@buffet.sh>
This commit is contained in:
parent
1bc2113f70
commit
eb78097206
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ pub struct Builtin {
|
|||
}
|
||||
|
||||
#[builtin(description = "prints help for different builtins")]
|
||||
fn help(shell: &mut Shell, _args: &[Cow<OsStr>]) {
|
||||
pub fn help(shell: &mut Shell, _args: &[Cow<OsStr>]) {
|
||||
println!(
|
||||
r"oyster help:
|
||||
|
||||
|
|
Loading…
Reference in a new issue