From 65ed79742ed5ca878c809da4520971e6beee10ae Mon Sep 17 00:00:00 2001 From: Tpt Date: Wed, 7 Nov 2018 15:31:07 +0100 Subject: [PATCH] Tags a doc test as ignored because it relies on an optional feature --- lib/src/model/dataset.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/model/dataset.rs b/lib/src/model/dataset.rs index abb8ab7f..156895c7 100644 --- a/lib/src/model/dataset.rs +++ b/lib/src/model/dataset.rs @@ -123,7 +123,7 @@ pub trait NamedGraph: Graph { /// ``` /// /// The implementation backed by RocksDB could be built using `RocksDbDataset::open` and works just like its in-memory equivalent: -/// ``` +/// ```ignore /// use rudf::store::RocksDbDataset; /// let dataset = RocksDbDataset::open("foo.db"); /// ```