Skip to content

Commit

Permalink
GH-4086: fix code example (#4087)
Browse files Browse the repository at this point in the history
Signed-off-by: Bart Hanssens <bart.hanssens@bosa.fgov.be>
  • Loading branch information
barthanssens authored Jul 29, 2022
1 parent 5820209 commit 3c39b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/content/documentation/programming/model.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ IRI nameProp = iri("http://example.org/name");
Literal bobsName = literal("Bob");
Literal bobsAge = literal(42);

Statement st = statement(bob, name, bobsName);
Statement st = statement(bob, nameProp, bobsName, null);
```

### Using a `ValueFactory`
Expand Down

0 comments on commit 3c39b35

Please sign in to comment.