aboutsummaryrefslogtreecommitdiff
path: root/crates/whirl_server/src/cmd
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-23 13:51:20 +0000
committerFuwn <[email protected]>2021-05-23 13:51:20 +0000
commit59cd17d4b5b1eff2847a954012eb916db4ef5116 (patch)
tree4074d9935949a48c64fdaa8503ae9ddc61e7678e /crates/whirl_server/src/cmd
parentbuild(cargo): create a fast builds configuration for cargo (diff)
downloadwhirl-59cd17d4b5b1eff2847a954012eb916db4ef5116.tar.xz
whirl-59cd17d4b5b1eff2847a954012eb916db4ef5116.zip
docs(global): add new documentation
Diffstat (limited to 'crates/whirl_server/src/cmd')
-rw-r--r--crates/whirl_server/src/cmd/set_parser.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/whirl_server/src/cmd/set_parser.rs b/crates/whirl_server/src/cmd/set_parser.rs
index 9d6a4b3..600badd 100644
--- a/crates/whirl_server/src/cmd/set_parser.rs
+++ b/crates/whirl_server/src/cmd/set_parser.rs
@@ -3,8 +3,8 @@
use crate::cmd::structure::Command;
-/// Iterate over a command set in the from of bytes and return a list of
-/// human-readable commands.
+/// Iterate over a command set in the from of bytes (Vec<u8>) and return a list
+/// of human-readable commands.
fn _parse_command_set(mut data: Vec<u8>) -> Vec<Command> {
let mut command_set = vec![];