diff options
| author | Fuwn <[email protected]> | 2021-06-05 22:42:55 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-06-05 22:42:55 +0000 |
| commit | 47c185c5973b7095b3df0b1ff79a3c51bb6fbc4e (patch) | |
| tree | be34623c8623a6f134108e74c763e5403639239a /crates/whirl_prompt/src/builtins | |
| parent | feat(make): document generation task (diff) | |
| download | whirl-47c185c5973b7095b3df0b1ff79a3c51bb6fbc4e.tar.xz whirl-47c185c5973b7095b3df0b1ff79a3c51bb6fbc4e.zip | |
build(global): bump toolchain release
This commit also fixes all of the new lints that arose because of the bump.
Diffstat (limited to 'crates/whirl_prompt/src/builtins')
| -rw-r--r-- | crates/whirl_prompt/src/builtins/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/whirl_prompt/src/builtins/mod.rs b/crates/whirl_prompt/src/builtins/mod.rs index 2bebd31..655f507 100644 --- a/crates/whirl_prompt/src/builtins/mod.rs +++ b/crates/whirl_prompt/src/builtins/mod.rs @@ -39,7 +39,7 @@ pub fn builtin_ls() -> i32 { 0 } -pub async fn builtin_cat(args: &[String]) -> i32 { +pub fn builtin_cat(args: &[String]) -> i32 { let file; if let Some(file_name) = args.get(0) { file = file_name.to_string(); |