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.