diff options
| author | Fuwn <[email protected]> | 2021-05-23 14:03:24 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-23 14:03:24 -0700 |
| commit | 38410cb41eb6c13f669ee340d896b02efc1afb63 (patch) | |
| tree | f5e3c840e22cb25cf7d7f76401a118ecd48d4784 /crates/whirl_prompt/src | |
| parent | fix(config): doc comment format (diff) | |
| download | whirl-38410cb41eb6c13f669ee340d896b02efc1afb63.tar.xz whirl-38410cb41eb6c13f669ee340d896b02efc1afb63.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![] |