diff options
Diffstat (limited to 'mingling_core/src/program')
| -rw-r--r-- | mingling_core/src/program/repl_exec.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mingling_core/src/program/repl_exec.rs b/mingling_core/src/program/repl_exec.rs index d7ee8e8..033c5a3 100644 --- a/mingling_core/src/program/repl_exec.rs +++ b/mingling_core/src/program/repl_exec.rs @@ -71,7 +71,7 @@ where /// /// **Note:** When the `async` feature is enabled, panic unwinding is not supported. /// Any panics during command execution will result in an abort rather than being caught and handled gracefully. - pub async fn exec_repl(self) { + pub async fn exec_repl(mut self) { // Inject default REPL resource self.with_resource(REPL::default()); |
