diff options
| author | Fuwn <[email protected]> | 2023-03-30 20:20:27 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-03-30 20:20:27 -0700 |
| commit | 9fc83f8d4fa360a2eb9812880e1db0fba6d4bad8 (patch) | |
| tree | a9f566fb606de56334f4be9390d48ad8912bd5e3 /src/modules/stocks.rs | |
| parent | feat(translation): add translation header (diff) | |
| download | locus-9fc83f8d4fa360a2eb9812880e1db0fba6d4bad8.tar.xz locus-9fc83f8d4fa360a2eb9812880e1db0fba6d4bad8.zip | |
deps(windmark): bump 0.2.1 -> 0.2.2
Diffstat (limited to 'src/modules/stocks.rs')
| -rw-r--r-- | src/modules/stocks.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/stocks.rs b/src/modules/stocks.rs index bc07f71..832a1ad 100644 --- a/src/modules/stocks.rs +++ b/src/modules/stocks.rs @@ -169,8 +169,8 @@ pub fn module(router: &mut windmark::Router) { if symbol != "Symbol Search" { if let Some(query) = context.url.query_pairs().next() { if query.0 == "action" && query.1 == "go" { - return windmark::Response::Input( - "Which symbol would you like to explore?".to_string(), + return windmark::Response::input( + "Which symbol would you like to explore?", ); } |