summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-08-25 18:58:07 +0000
committerbors <bors@rust-lang.org>2015-08-25 18:58:07 +0000
commit14b7591ee578042da43f6a9968034f4998cf291c (patch)
tree457baf7d6da0ecede114f07567a87e6b9c9052f8 /src
parentb339f38fa23845ce83c839380cd7cc34c5841f74 (diff)
parent93616af42f4770edd681245933455ace84de5c02 (diff)
downloadrust-14b7591ee578042da43f6a9968034f4998cf291c.tar.gz
rust-14b7591ee578042da43f6a9968034f4998cf291c.zip
Auto merge of #28000 - mbrubeck:reference, r=steveklabnik
See #19466 for background.  r? @steveklabnik
Diffstat (limited to 'src')
-rw-r--r--src/doc/reference.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index 70e3145903f..dbcfafaf1c1 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -1881,11 +1881,15 @@ type int8_t = i8;
 - `no_start` - disable linking to the `native` crate, which specifies the
   "start" language item.
 - `no_std` - disable linking to the `std` crate.
-- `plugin` — load a list of named crates as compiler plugins, e.g.
+- `plugin` - load a list of named crates as compiler plugins, e.g.
              `#![plugin(foo, bar)]`. Optional arguments for each plugin,
              i.e. `#![plugin(foo(... args ...))]`, are provided to the plugin's
              registrar function.  The `plugin` feature gate is required to use
              this attribute.
+- `recursion_limit` - Sets the maximum depth for potentially
+                      infinitely-recursive compile-time operations like
+                      auto-dereference or macro expansion. The default is
+                      `#![recursion_limit="64"]`.
 
 ### Module-only attributes