feat(complete): Make Shells::builtins const

This commit is contained in:
Ed Page 2024-08-16 09:37:09 -05:00
parent 97deaf4194
commit 661ccc2d30

View file

@ -232,7 +232,7 @@ pub struct Shells<'s>(pub &'s [&'s dyn EnvCompleter]);
impl<'s> Shells<'s> {
/// Select all of the built-in shells
pub fn builtins() -> Self {
pub const fn builtins() -> Self {
Self(&[&Bash, &Elvish, &Fish, &Powershell, &Zsh])
}