Skip to content

Commit

Permalink
Merge 242f208 into 06dae6a
Browse files Browse the repository at this point in the history
  • Loading branch information
PuckCh committed Oct 15, 2013
2 parents 06dae6a + 242f208 commit bc679c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/gettingstarted.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ A more extensive example:
.. code-block:: python
from rdflib import Graph, Literal, BNode, Namespace, RDF
from rdflib.namespace import DC, FOAF
from rdflib.namespace import DC, FOAF
g = Graph()
Expand All @@ -81,7 +81,7 @@ A more extensive example:
g.add( (donna, RDF.type, FOAF.Person]) )
g.add( (donna, FOAF.nick, Literal("donna", lang="foo")) )
g.add( (donna, FOAF.name, Literal("Donna Fales")) )
g.add( (donna, FOAF.mbox, URIRef("mailto:donna@example.org")) )
g.add( (donna, FOAF.mbox, URIRef("mailto:donna@example.org")) )
# Iterate over triples in store and print them out.
print("--- printing raw triples ---")
Expand Down

0 comments on commit bc679c0

Please sign in to comment.