diff options
| author | Fuwn <[email protected]> | 2021-05-23 14:03:24 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-23 14:03:24 +0000 |
| commit | c44f893422a36fb53b90f43b7ae1eaff5d9a0506 (patch) | |
| tree | 91866c6b8ba0596e0f22f3d02b1411afdfbce0ff /crates/whirl_prompt/src | |
| parent | fix(config): doc comment format (diff) | |
| download | whirl-c44f893422a36fb53b90f43b7ae1eaff5d9a0506.tar.xz whirl-c44f893422a36fb53b90f43b7ae1eaff5d9a0506.zip | |
docs(global): more documentation
Diffstat (limited to 'crates/whirl_prompt/src')
| -rw-r--r-- | crates/whirl_prompt/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/whirl_prompt/src/lib.rs b/crates/whirl_prompt/src/lib.rs index 32b247f..f82459d 100644 --- a/crates/whirl_prompt/src/lib.rs +++ b/crates/whirl_prompt/src/lib.rs @@ -37,6 +37,7 @@ pub struct Prompt { history: Vec<String>, } impl Prompt { + /// Begin handling user input as the prompt. pub async fn handle() -> ! { let mut prompt = Prompt { history: vec![] |