DaGenix / rust-crypto

A (mostly) pure-Rust implementation of various cryptographic algorithms.
Apache License 2.0
1.4k stars 297 forks source link

`ref` on an entire `let` pattern is discouraged #443

Open luisbg opened 6 years ago

luisbg commented 6 years ago

For let bindings, let x = &foo; is preferred. The type of x is more obvious with the former.

Small style fix. If you like I can send more :)