Skip to content

Commit

Permalink
Put Accept-Encoding value in backticks (ordinals#2840)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Dec 10, 2023
1 parent 9c5598f commit 1c419db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/subcommand/server/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ impl IntoResponse for ServerError {
);

if let Some(accept_encoding) = accept_encoding.0 {
write!(message, " `Accept-Encoding` header: {accept_encoding}").unwrap();
write!(message, " `Accept-Encoding` header: `{accept_encoding}`").unwrap();
} else {
write!(message, " `Accept-Encoding` header not present").unwrap();
};
Expand Down

0 comments on commit 1c419db

Please sign in to comment.