Rollup merge of #28294 - midinastasurazz:patch-3, r=steveklabnik

The link address is defined below the paragraph so no need to have it inline.
This commit is contained in:
Manish Goregaokar 2015-09-09 18:36:11 +05:30
commit b33b121e95

View File

@ -313,7 +313,7 @@ fn main() {
}
```
This works because Rust has a [hygienic macro system][https://en.wikipedia.org/wiki/Hygienic_macro]. Each macro expansion
This works because Rust has a [hygienic macro system]. Each macro expansion
happens in a distinct syntax context, and each variable is tagged with the
syntax context where it was introduced. Its as though the variable `state`
inside `main` is painted a different "color" from the variable `state` inside