summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrozbeh <rouzbeh.asghari@gmail.com>2020-12-23 19:34:15 -0800
committerrozbeh <rouzbeh.asghari@gmail.com>2020-12-23 19:34:15 -0800
commit0c8e34473e1ea5db7f588f998321ebf8a1f7dba5 (patch)
tree8e5817099704f897f9a732352fd562a8c67ab12b
parent5b9da927714a92a8888407f42b46249002964e8e (diff)
downloadrdflib-0c8e34473e1ea5db7f588f998321ebf8a1f7dba5.tar.gz
fix typo
-rw-r--r--docs/intro_to_creating_rdf.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro_to_creating_rdf.rst b/docs/intro_to_creating_rdf.rst
index 5d58945b..238eafba 100644
--- a/docs/intro_to_creating_rdf.rst
+++ b/docs/intro_to_creating_rdf.rst
@@ -12,7 +12,7 @@ represented by the classes :class:`~rdflib.term.URIRef`, :class:`~rdflib.term.BN
``URIRefs`` and ``BNodes`` can both be thought of as resources, such a person, a company, a website, etc.
* A ``BNode`` is a node where the exact URI is not known.
-* A ``URIRef`` is a node where the exact URI is knonw. ``URIRef``\s are also used to represent the properties/predicates in the RDF graph.
+* A ``URIRef`` is a node where the exact URI is known. ``URIRef``\s are also used to represent the properties/predicates in the RDF graph.
* ``Literals`` represent attribute values, such as a name, a date, a number, etc. The most common literal values are XML data types, e.g. string, int...