aboutsummaryrefslogtreecommitdiff
path: root/crates/whirl_server/src/cmd
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-23 13:51:20 -0700
committerFuwn <[email protected]>2021-05-23 13:51:20 -0700
commitddce4052e84962b10ee18a3d395ba5f8edeb3fff (patch)
tree7c57e6aa0fd346e540d974e08a099180739afa40 /crates/whirl_server/src/cmd
parentbuild(cargo): create a fast builds configuration for cargo (diff)
downloadwhirl-ddce4052e84962b10ee18a3d395ba5f8edeb3fff.tar.xz
whirl-ddce4052e84962b10ee18a3d395ba5f8edeb3fff.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![];