DaGenix / rust-crypto

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

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

Open luisbg opened 5 years ago

luisbg commented 5 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 :)