Open hamirmahal opened 6 days ago
Fixes #3142
We can simplify some statements, like
(len, format!("http://{}/{}", authority, letter))
to improve code readability.
We replace lines like
with
(len, format!("http://{authority}/{letter}"))
Sure! I'll do that right now.
Fixes #3142
Motivation
We can simplify some statements, like
to improve code readability.
Solution
We replace lines like
with