From 27fc0945a7a5d9eb93c69d865934ee2e5ede88ec Mon Sep 17 00:00:00 2001 From: Marcel Otto Date: Mon, 25 Mar 2019 22:50:40 +0100 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b6ac67..9e4a7c4 100644 --- a/README.md +++ b/README.md @@ -704,7 +704,7 @@ iex> RDF.integer(42) |> RDF.Term.value() It returns `nil` if no conversion is possible. -All structures of RDF terms also support a `values` function. On `RDF.Triple.values`, `RDF.Quad` and `RDF.Statement` the tuple of RDF terms is converted to an tuple of the resp. Elixir values. On all of the other RDF data structures (`RDF.Description`, `RDF.Graph` and `RDF.Dataset`) and the general `RDF.Data` protocol the `values` functions produces a map of the converted Elixir values. +All structures of RDF terms also support a `values` function. The `values` functions on `RDF.Triple`, `RDF.Quad` and `RDF.Statement` are converting a tuple of RDF terms to a tuple of the resp. Elixir values. On all of the other RDF data structures (`RDF.Description`, `RDF.Graph` and `RDF.Dataset`) and the general `RDF.Data` protocol the `values` functions are producing a map of the converted Elixir values. ```elixir iex> RDF.Triple.values {~I, ~I, RDF.literal(42)}