Update Rust

This commit is contained in:
Chris Wong 2015-02-13 17:46:02 +13:00
parent 649be1de09
commit 64962e2c41
2 changed files with 3 additions and 3 deletions
maud/src
maud_macros/tests

View file

@ -19,9 +19,9 @@
//!
//! ```rust
//! #![feature(plugin)]
//! #![plugin(maud_macros)]
//!
//! extern crate maud;
//! #[plugin] #[no_link] extern crate maud_macros;
//!
//! fn main() {
//! let name = "Lyra";
@ -153,7 +153,7 @@
//! As with literals, expression values are escaped by default. Use a
//! `$$` prefix to disable this behavior.
#![feature(core, io)]
#![feature(io)]
use std::fmt;
use std::old_io::{IoError, IoErrorKind, IoResult};

View file

@ -1,7 +1,7 @@
#![feature(plugin)]
#![plugin(maud_macros)]
extern crate maud;
#[plugin] #[no_link] extern crate maud_macros;
#[test]
fn literals() {