summaryrefslogtreecommitdiff
path: root/docs/persistence.rst
diff options
context:
space:
mode:
authorgromgull <gromgull@gmail.com>2013-05-07 16:39:46 +0200
committergromgull <gromgull@gmail.com>2013-05-07 16:39:46 +0200
commit9e18ba31917fdc17fbc4f11a12d98141afbac1f6 (patch)
treea57afa8c75a70e4791bb9e7469442a3839901e1e /docs/persistence.rst
parent071ece8d2c3a507b3000f4495c5d314bdd77687b (diff)
downloadrdflib-9e18ba31917fdc17fbc4f11a12d98141afbac1f6.tar.gz
doc updates
Diffstat (limited to 'docs/persistence.rst')
-rw-r--r--docs/persistence.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/persistence.rst b/docs/persistence.rst
index 41ae08fd..dd838258 100644
--- a/docs/persistence.rst
+++ b/docs/persistence.rst
@@ -4,7 +4,7 @@
Persistence
===========
-``rdflib`` provides an abstracted Store API for persistence of RDF and Notation 3. The :class:`~rdflib.graph.Graph` class works with instances of this API (as the first argument to its constructor) for triple-based management of an RDF store including: garbage collection, transaction management, update, pattern matching, removal, length, and database management (:meth:`~rdflib.graph.Graph.open` / :meth:`~rdflib.graph.Graph.close` / :meth:`~rdflib.graph.Graph.destroy`).
+``RDFLib`` provides an abstracted Store API for persistence of RDF and Notation 3. The :class:`~rdflib.graph.Graph` class works with instances of this API (as the first argument to its constructor) for triple-based management of an RDF store including: garbage collection, transaction management, update, pattern matching, removal, length, and database management (:meth:`~rdflib.graph.Graph.open` / :meth:`~rdflib.graph.Graph.close` / :meth:`~rdflib.graph.Graph.destroy`).
Additional persistence mechanisms can be supported by implementing this API for a different store.