Remove unecessary .to_string #106
Reference in New Issue
Block a user
No description provided.
Delete Branch "to-string"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
was able to use
to convert a HashMap<&str, &str> into a HashMap<String, String>,
so that we don't need to write .to_string() on every single string in the defaults.
👍 🟢