From 2e41656d1a5ff23a48aa91ae2240be7153176556 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 11 May 2018 14:55:23 +0200 Subject: [PATCH] Fix comment for rustc 1.26 --- lib/entry/libimagentrylink/src/external.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/entry/libimagentrylink/src/external.rs b/lib/entry/libimagentrylink/src/external.rs index 2d5592c6..77a81849 100644 --- a/lib/entry/libimagentrylink/src/external.rs +++ b/lib/entry/libimagentrylink/src/external.rs @@ -134,12 +134,14 @@ pub mod iter { /// The boolean value defines, how to interpret the `is_external_link_storeid()` return value /// (here as "pred"): /// + /// ```ignore /// pred | bool | xor | take? /// ---- | ---- | --- | ---- /// 0 | 0 | 0 | 1 /// 0 | 1 | 1 | 0 /// 1 | 0 | 1 | 0 /// 1 | 1 | 0 | 1 + /// ``` /// /// If `bool` says "take if return value is false", we take the element if the `pred` returns /// false... and so on.