summaryrefslogtreecommitdiff
path: root/docs/namespaces_and_bindings.rst
diff options
context:
space:
mode:
authorgromgull <gromgull@gmail.com>2013-05-07 17:06:05 +0200
committergromgull <gromgull@gmail.com>2013-05-07 17:06:05 +0200
commit9b6fe67f495c4b34f420a843a3fe742c1b3c23dd (patch)
treeebde843b85c8b39e52381b62e275759827774250 /docs/namespaces_and_bindings.rst
parent9e18ba31917fdc17fbc4f11a12d98141afbac1f6 (diff)
downloadrdflib-9b6fe67f495c4b34f420a843a3fe742c1b3c23dd.tar.gz
more doc updates
Diffstat (limited to 'docs/namespaces_and_bindings.rst')
-rw-r--r--docs/namespaces_and_bindings.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/namespaces_and_bindings.rst b/docs/namespaces_and_bindings.rst
index 7dfa654e..b0d243f2 100644
--- a/docs/namespaces_and_bindings.rst
+++ b/docs/namespaces_and_bindings.rst
@@ -4,7 +4,7 @@
Namespaces and Bindings
=======================
-``RDFLib`` provides several short-cuts to working with many URIs in the same namespace.
+RDFLib provides several short-cuts to working with many URIs in the same namespace.
The :mod:`rdflib.namespace` defines the :class:`rdflib.namespace.Namespace` class which lets you easily create URIs in a namespace:
@@ -19,7 +19,7 @@ The :mod:`rdflib.namespace` defines the :class:`rdflib.namespace.Namespace` clas
The ``namespace`` module also defines many common namespaces such as RDF, RDFS, OWL, FOAF, SKOS, etc.
-Namespaces can also be associated with prefixes, in a :class:`rdflib.namespace.NamespaceManager`, i.e. using ``foaf`` for ``http://xmlns.com/foaf/0.1/``. Each ``RDFLib`` graph has a :attr:`rdflib.graph.Graph:namespace_manager` that keeps a list of namespace to prefix mappings. The namespace manager is populated when reading in RDF, and these prefixes are used when serialising RDF, or when parsing SPARQL queries. Additional prefixes can be bound with the :meth:`rdflib.graph.bind` method.
+Namespaces can also be associated with prefixes, in a :class:`rdflib.namespace.NamespaceManager`, i.e. using ``foaf`` for ``http://xmlns.com/foaf/0.1/``. Each RDFLib graph has a :attr:`rdflib.graph.Graph:namespace_manager` that keeps a list of namespace to prefix mappings. The namespace manager is populated when reading in RDF, and these prefixes are used when serialising RDF, or when parsing SPARQL queries. Additional prefixes can be bound with the :meth:`rdflib.graph.bind` method.
Namespaces in SPARQL Queries