mirror of https://github.com/rwf2/Rocket.git
Use 'decl_macro' in markdown docs.
This commit is contained in:
parent
245f815657
commit
33e9726151
|
@ -10,7 +10,7 @@ Rocket is web framework for Rust (nightly) with a focus on ease-of-use,
|
|||
expressibility, and speed. Here's an example of a complete Rocket application:
|
||||
|
||||
```rust
|
||||
#![feature(plugin)]
|
||||
#![feature(plugin, decl_macro)]
|
||||
#![plugin(rocket_codegen)]
|
||||
|
||||
extern crate rocket;
|
||||
|
|
|
@ -61,7 +61,7 @@ Modify `src/main.rs` so that it contains the code for the Rocket `Hello, world!`
|
|||
program, reproduced below:
|
||||
|
||||
```rust
|
||||
#![feature(plugin)]
|
||||
#![feature(plugin, decl_macro)]
|
||||
#![plugin(rocket_codegen)]
|
||||
|
||||
extern crate rocket;
|
||||
|
|
|
@ -138,7 +138,7 @@ We typically call `launch` from the `main` function. Our complete _Hello,
|
|||
world!_ application thus looks like:
|
||||
|
||||
```rust
|
||||
#![feature(plugin)]
|
||||
#![feature(plugin, decl_macro)]
|
||||
#![plugin(rocket_codegen)]
|
||||
|
||||
extern crate rocket;
|
||||
|
@ -153,10 +153,11 @@ fn main() {
|
|||
}
|
||||
```
|
||||
|
||||
Note that we've added the `#![feature(plugin)]` and `#![plugin(rocket_codegen)]`
|
||||
lines to tell Rust that we'll be using Rocket's code generation plugin. We've
|
||||
also imported the `rocket` crate into our namespace via `extern crate rocket`.
|
||||
Finally, we call the `launch` method in the `main` function.
|
||||
Note that we've added the `#![feature(plugin, decl_macro)]` and
|
||||
`#![plugin(rocket_codegen)]` lines to tell Rust that we'll be using Rocket's
|
||||
code generation plugin. We've also imported the `rocket` crate into our
|
||||
namespace via `extern crate rocket`. Finally, we call the `launch` method in the
|
||||
`main` function.
|
||||
|
||||
Running the application, the console shows:
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ And finally, create a skeleton Rocket application to work off of in
|
|||
`src/main.rs`:
|
||||
|
||||
```rust
|
||||
#![feature(plugin)]
|
||||
#![feature(plugin, decl_macro)]
|
||||
#![plugin(rocket_codegen)]
|
||||
|
||||
extern crate rocket;
|
||||
|
|
Loading…
Reference in New Issue