mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-04 11:17:04 +00:00

It bugs me when variables of type `Ident` are called `name`. It leads to silly things like `name.name`. `Ident` variables should be called `ident`, and `name` should be used for variables of type `Symbol`. This commit improves things by by doing `s/name/ident/` on a bunch of `Ident` variables. Not all of them, but a decent chunk.
For more information about how rustc works, see the rustc dev guide.