summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStig B. Dørmænen <stigbd@gmail.com>2020-07-03 09:57:18 +0200
committerStig B. Dørmænen <stigbd@gmail.com>2020-07-03 09:57:18 +0200
commit97b28811070223fce44b3e48a3911e56ce91b2c4 (patch)
tree4a2c70dd23a921f1561594f15f3c7e72782adcc2
parente4fe0fdbd4de7e1183418f302315b51a14602e03 (diff)
downloadrdflib-97b28811070223fce44b3e48a3911e56ce91b2c4.tar.gz
Fix comment
-rw-r--r--examples/conjunctive_graphs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/conjunctive_graphs.py b/examples/conjunctive_graphs.py
index f714d9ff..a66a3aa8 100644
--- a/examples/conjunctive_graphs.py
+++ b/examples/conjunctive_graphs.py
@@ -33,7 +33,7 @@ if __name__ == "__main__":
gmary.add((mary, ns["hasName"], Literal("Mary")))
gmary.add((mary, ns["loves"], john))
- # add a graph for Mary's facts to the Conjunctive Graph
+ # add a graph for John's facts to the Conjunctive Graph
gjohn = Graph(store=store, identifier=cjohn)
# John's graph contains his cute name
gjohn.add((john, ns["hasCuteName"], Literal("Johnny Boy")))