diff --git a/python/src/store.rs b/python/src/store.rs index 4ff0d47b..9a6c7bd7 100644 --- a/python/src/store.rs +++ b/python/src/store.rs @@ -96,11 +96,11 @@ impl PyStore { /// Looks for the quads matching a given pattern. /// /// :param subject: the quad subject or :py:const:`None` to match everything. - /// :type subject: NamedNode or BlankNode or None + /// :type subject: NamedNode or BlankNode or Triple or None /// :param predicate: the quad predicate or :py:const:`None` to match everything. /// :type predicate: NamedNode or None /// :param object: the quad object or :py:const:`None` to match everything. - /// :type object: NamedNode or BlankNode or Literal or None + /// :type object: NamedNode or BlankNode or Literal or Triple or None /// :param graph_name: the quad graph name. To match only the default graph, use :py:class:`DefaultGraph`. To match everything use :py:const:`None`. /// :type graph_name: NamedNode or BlankNode or DefaultGraph or None /// :return: an iterator of the quads matching the pattern.