Skip to content

Commit

Permalink
mark more doctests as no_run
Browse files Browse the repository at this point in the history
  • Loading branch information
ljeub-pometry committed Aug 6, 2024
1 parent 04cccaa commit 409ab27
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions raphtory/src/graph_loader/lotr_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
//! - time: The time of the interaction (in page)
//!
//! ## Dataset statistics
//! * Number of nodes (subreddits) 139
//! * Number of edges (hyperlink between subreddits) 701
//! * Number of nodes (characters) 139
//! * Number of edges (interactions) 701
//!
//! Example:
//! ```rust
//! ```rust,no_run
//! use raphtory::graph_loader::lotr_graph::lotr_graph;
//! use raphtory::prelude::*;
//!
Expand Down
4 changes: 2 additions & 2 deletions raphtory/src/graph_loader/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! # Examples
//!
//! Load a pre-built graph
//! ```rust
//! ```rust,no_run
//! use raphtory::algorithms::metrics::degree::average_degree;
//! use raphtory::prelude::*;
//! use raphtory::graph_loader::lotr_graph::lotr_graph;
Expand Down Expand Up @@ -82,7 +82,7 @@
//!
//! download a file without creating the graph
//!
//! ```rust
//! ```rust,no_run
//! use raphtory::graph_loader::fetch_file;
//!
//! let path = fetch_file(
Expand Down

0 comments on commit 409ab27

Please sign in to comment.