summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshley Sommer <ashleysommer@gmail.com>2020-08-04 21:14:00 +1000
committerGitHub <noreply@github.com>2020-08-04 21:14:00 +1000
commit04d7a51ded93a4d77cc392c7935e2c04536df81b (patch)
tree04c8cedcea073582f1cfce6bcc5a548a88b2cf31
parent7c7f7638ffca9ad5ff953f4f437deca12686c10f (diff)
parent97b28811070223fce44b3e48a3911e56ce91b2c4 (diff)
downloadrdflib-04d7a51ded93a4d77cc392c7935e2c04536df81b.tar.gz
Merge pull request #1130 from stigbd/fix/typo_in_example
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")))