skhtml/typed-html
Mathias Svensson 0950c82294 Use `slice::iter` instead of `into_iter` to avoid future breakage
`an_array.into_iter()` currently just works because of the autoref
feature, which then calls `<[T] as IntoIterator>::into_iter`. But
in the future, arrays will implement `IntoIterator`, too. In order
to avoid problems in the future, the call is replaced by `iter()`
which is shorter and more explicit.
2019-11-29 14:30:35 +00:00
..
src Use `slice::iter` instead of `into_iter` to avoid future breakage 2019-11-29 14:30:35 +00:00
Cargo.toml Bump some deps, lock another. 2019-10-01 14:44:21 +01:00