aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorboastful-squirrel <boastful.squirrel@gmail.com>2019-04-15 16:54:00 +0000
committerboastful-squirrel <boastful.squirrel@gmail.com>2019-04-15 16:54:00 +0000
commit25cdd8d5f98f92e5b80d2611731b3403c30da7bb (patch)
tree3ef6f04ebbb44dbec300c7a68ccbb6b6e5356fa2 /src
parentMerge branch 'master' into fix_auth (diff)
downloadminiserve-25cdd8d5f98f92e5b80d2611731b3403c30da7bb.tar.gz
miniserve-25cdd8d5f98f92e5b80d2611731b3403c30da7bb.zip
Fix typo in comment
Diffstat (limited to 'src')
-rw-r--r--src/args.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/args.rs b/src/args.rs
index 5a0b5db..825a4ac 100644
--- a/src/args.rs
+++ b/src/args.rs
@@ -98,7 +98,7 @@ fn parse_auth(src: &str) -> Result<(String, String), String> {
}
};
- // To make it Windows-compatible,the password needs to be shorter than 255 characters.
+ // To make it Windows-compatible, the password needs to be shorter than 255 characters.
// After 255 characters, Windows will truncate the value.
// As for the username, the spec does not mention a limit in length
if password.len() > 255 {