avoid 'ignored' in test output

This commit is contained in:
Aleksey Kladov 2019-02-08 13:55:45 +03:00
parent 4d0e58afef
commit f5bb704568

View file

@ -28,7 +28,7 @@ fn expand_rule(rule: &crate::Rule, input: &tt::Subtree) -> Option<tt::Subtree> {
/// ///
/// The tricky bit is dealing with repetitions (`$()*`). Consider this example: /// The tricky bit is dealing with repetitions (`$()*`). Consider this example:
/// ///
/// ```ignore /// ```not_rust
/// macro_rules! foo { /// macro_rules! foo {
/// ($($ i:ident $($ e:expr),*);*) => { /// ($($ i:ident $($ e:expr),*);*) => {
/// $(fn $ i() { $($ e);*; })* /// $(fn $ i() { $($ e);*; })*
@ -46,7 +46,7 @@ fn expand_rule(rule: &crate::Rule, input: &tt::Subtree) -> Option<tt::Subtree> {
/// ///
/// For the above example, the bindings would store /// For the above example, the bindings would store
/// ///
/// ```ignore /// ```not_rust
/// i -> [foo, bar] /// i -> [foo, bar]
/// e -> [[1, 2, 3], [4, 5, 6]] /// e -> [[1, 2, 3], [4, 5, 6]]
/// ``` /// ```