summaryrefslogtreecommitdiff
path: root/docs/intro_to_creating_rdf.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/intro_to_creating_rdf.rst')
-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 2b52ae26..1a2b8de5 100644
--- a/docs/intro_to_creating_rdf.rst
+++ b/docs/intro_to_creating_rdf.rst
@@ -91,7 +91,7 @@ For some properties, only one value per resource makes sense (i.e they are *func
print "Bob is ", g.value( bob, FOAF.age )
# prints: Bob is 42
- g.set( ( bob, age, Literal(43) ) ) # replaces 42 set above
+ g.set( ( bob, FOAF.age, Literal(43) ) ) # replaces 42 set above
print "Bob is now ", g.value( bob, FOAF.age )
# prints: Bob is now 43