Supress doctest errors

This commit is contained in:
Michael Vines 2020-07-20 12:29:18 -07:00
parent 54dae6ba2c
commit 019c75797d
1 changed files with 2 additions and 2 deletions

View File

@ -259,7 +259,7 @@ pub mod row_filter {
/// If multiple cells are produced with the same column and timestamp, /// If multiple cells are produced with the same column and timestamp,
/// they will all appear in the output row in an unspecified mutual order. /// they will all appear in the output row in an unspecified mutual order.
/// Consider the following example, with three filters: /// Consider the following example, with three filters:
/// ///```ignore
/// input row /// input row
/// | /// |
/// ----------------------------------------------------- /// -----------------------------------------------------
@ -325,7 +325,7 @@ pub mod row_filter {
/// Hook for introspection into the RowFilter. Outputs all cells directly to /// Hook for introspection into the RowFilter. Outputs all cells directly to
/// the output of the read rather than to any parent filter. Consider the /// the output of the read rather than to any parent filter. Consider the
/// following example: /// following example:
/// ///```ignore
/// Chain( /// Chain(
/// FamilyRegex("A"), /// FamilyRegex("A"),
/// Interleave( /// Interleave(