diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-09-09 18:36:11 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-09-09 18:36:11 +0530 |
| commit | b33b121e9529c72ffa4528852a08c108304ca77a (patch) | |
| tree | 26120f9e8c6c63b1578a1fd9a19842ef07f9ff2e /src | |
| parent | c9f291e4bb664c0cbc5693bb4ec0a5821077393d (diff) | |
| parent | 3e8038bcab8e43e6f3f5761af4ea64372da0c4e0 (diff) | |
| download | rust-b33b121e9529c72ffa4528852a08c108304ca77a.tar.gz rust-b33b121e9529c72ffa4528852a08c108304ca77a.zip | |
Rollup merge of #28294 - midinastasurazz:patch-3, r=steveklabnik
The link address is defined below the paragraph so no need to have it inline.
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/trpl/macros.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/macros.md b/src/doc/trpl/macros.md index c13b13b5a07..d74cd6d0d35 100644 --- a/src/doc/trpl/macros.md +++ b/src/doc/trpl/macros.md @@ -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. It’s as though the variable `state` inside `main` is painted a different "color" from the variable `state` inside |
