You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
one of the surf examples included lines like this:
```
for (name, value) in &req {
new_req.insert_header(name.clone(), &value[..]);
}
```
and it seemed like it would be nice to do
```
for (name, value) in &req {
new_req.insert_header(name, value);
}
```
0 commit comments