Remove whitespace after comma

This commit is contained in:
Fabrice Reix 2023-06-01 10:31:26 +02:00 committed by jcamiel
parent c97cfb7cde
commit 56bb2042b8
No known key found for this signature in database
GPG Key ID: 07FF11CFD55356CC
2 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ Content-Type: application/json
POST http://localhost:8000/post-file
Content-Type:
file, tests_ok/data.bin;
file,tests_ok/data.bin;
GET http://localhost:8000/redirect-absolute
[Options]

View File

@ -484,7 +484,7 @@ fn lint_bytes(bytes: &Bytes) -> Bytes {
fn lint_base64(base64: &Base64) -> Base64 {
Base64 {
space0: one_whitespace(),
space0: empty_whitespace(),
value: base64.value.clone(),
encoded: base64.encoded.clone(),
space1: empty_whitespace(),
@ -493,7 +493,7 @@ fn lint_base64(base64: &Base64) -> Base64 {
fn lint_hex(hex: &Hex) -> Hex {
Hex {
space0: one_whitespace(),
space0: empty_whitespace(),
value: hex.value.clone(),
encoded: hex.encoded.clone(),
space1: empty_whitespace(),
@ -502,7 +502,7 @@ fn lint_hex(hex: &Hex) -> Hex {
fn lint_file(file: &File) -> File {
File {
space0: one_whitespace(),
space0: empty_whitespace(),
filename: Filename {
value: file.filename.value.clone(),
source_info: SourceInfo::new(0, 0, 0, 0),