Skip to content

Commit

Permalink
TRPL: Remove references to "advanced macros chapter"
Browse files Browse the repository at this point in the history
This was merged back into the regular macros chapter, but a few
references lingered and caused broken links.
  • Loading branch information
geofft committed Apr 23, 2015
1 parent ad2684c commit 2f49122
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/doc/trpl/macros.md
Expand Up @@ -57,8 +57,7 @@ let x: Vec<u32> = {
We can implement this shorthand, using a macro: [^actual]

[^actual]: The actual definition of `vec!` in libcollections differs from the
one presented here, for reasons of efficiency and reusability. Some
of these are mentioned in the [advanced macros chapter][].
one presented here, for reasons of efficiency and reusability.

```rust
macro_rules! vec {
Expand Down Expand Up @@ -106,7 +105,7 @@ These have [their own little grammar] within the language.

The matcher `$x:expr` will match any Rust expression, binding that syntax tree
to the ‘metavariable’ `$x`. The identifier `expr` is a ‘fragment specifier’;
the full possibilities are enumerated in the [advanced macros chapter][].
the full possibilities are enumerated later in this chapter.
Surrounding the matcher with `$(...),*` will match zero or more expressions,
separated by commas.

Expand Down

0 comments on commit 2f49122

Please sign in to comment.