summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2021-10-14 15:17:21 +0200
committerChristian Clauss <cclauss@me.com>2021-10-14 15:17:58 +0200
commita4face17a1a2088b7d8b53e7b0394d197ce8f5b7 (patch)
treef4b014fa41f48159f40a4cc4ab70d4bb3d9d377a /docs
parent1729243621d5679ad4c8c156332e91f4b078dda5 (diff)
downloadrdflib-a4face17a1a2088b7d8b53e7b0394d197ce8f5b7.tar.gz
Fix typos discovered by codespell
Diffstat (limited to 'docs')
-rw-r--r--docs/intro_to_parsing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro_to_parsing.rst b/docs/intro_to_parsing.rst
index 4460d30e..0333c4ee 100644
--- a/docs/intro_to_parsing.rst
+++ b/docs/intro_to_parsing.rst
@@ -86,7 +86,7 @@ To store a graph in a file, use the :func:`rdflib.Graph.serialize` function:
This parses data from http://www.w3.org/People/Berners-Lee/card and stores it in a file ``tbl.ttl`` in this directory
using the turtle format as a default.
-To read the same data and to save it in a varable ``v`` a string in the RDF/XML format, do this:
+To read the same data and to save it in a variable ``v`` a string in the RDF/XML format, do this:
.. code-block:: python