Skip to content

Commit 37cab48

Browse files
committed
Further doc fixes
1 parent a513569 commit 37cab48

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

lib/engine/src/results/graph_name.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use std::pin::Pin;
1111
use std::sync::Arc;
1212
use std::task::{ready, Context, Poll};
1313

14-
/// An iterator returning the graph names contained in a [`Store`].
14+
/// An iterator yielding graph names.
1515
pub struct GraphNameStream {
1616
stream: QuerySolutionStream,
1717
}

lib/engine/src/results/query_solution.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ use std::sync::Arc;
1515
use std::task::{ready, Context, Poll};
1616

1717
/// A stream over [`QuerySolution`]s.
18-
/// ```
1918
pub struct QuerySolutionStream {
2019
/// TODO
2120
variables: Arc<[Variable]>,

lib/engine/src/sparql/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
//! [SPARQL](https://www.w3.org/TR/sparql11-overview/) implementation.
2-
//!
3-
//! Stores execute SPARQL. See [`Store`](rdf_fusion::store::Store::query()) for an example.
42
53
mod algebra;
64
pub mod error;

lib/rdf-fusion/src/store.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ impl Store {
412412

413413
/// Loads a RDF file under into the store.
414414
///
415-
/// This function is atomic, quite slow and memory hungry. To get much better performances you might want to use the [`bulk_loader`](Store::bulk_loader).
415+
/// This function is atomic, quite slow and memory hungry.
416416
///
417417
/// Usage example:
418418
/// ```

0 commit comments

Comments
 (0)