summaryrefslogtreecommitdiff
path: root/docs/namespaces_and_bindings.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/namespaces_and_bindings.rst
parent071ece8d2c3a507b3000f4495c5d314bdd77687b (diff)
downloadrdflib-9e18ba31917fdc17fbc4f11a12d98141afbac1f6.tar.gz
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 dfe8c0e3..7dfa654e 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