summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Car <nicholas.car@surroundaustralia.com>2020-12-27 21:06:10 +1000
committerGitHub <noreply@github.com>2020-12-27 21:06:10 +1000
commite5993334058b7a0e35d008d3e21b71eed88cf4c4 (patch)
tree5aa3e41c2e1e72a8fe2700f9ed065b1695e5d3fb
parent7b279e3b1aea04234c80bb5723b8e84beb83d804 (diff)
parent0c8e34473e1ea5db7f588f998321ebf8a1f7dba5 (diff)
downloadrdflib-e5993334058b7a0e35d008d3e21b71eed88cf4c4.tar.gz
Merge pull request #1218 from ROZBEH/rouzbeh/modify-docs
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...