Fix some typos in the documentation

This commit is contained in:
Marcel Otto 2018-03-19 01:50:05 +01:00
parent 733ee44749
commit 0e913fce81
4 changed files with 11 additions and 11 deletions

View file

@ -6,9 +6,9 @@ defmodule RDF.Dataset do
`RDF.Dataset` implements:
- Elixirs `Access` behaviour
- Elixirs `Enumerable` protocol
- Elixirs `Inspect` protocol
- Elixir's `Access` behaviour
- Elixir's `Enumerable` protocol
- Elixir's `Inspect` protocol
- the `RDF.Data` protocol
"""

View file

@ -4,9 +4,9 @@ defmodule RDF.Description do
`RDF.Description` implements:
- Elixirs `Access` behaviour
- Elixirs `Enumerable` protocol
- Elixirs `Inspect` protocol
- Elixir's `Access` behaviour
- Elixir's `Enumerable` protocol
- Elixir's `Inspect` protocol
- the `RDF.Data` protocol
"""

View file

@ -4,9 +4,9 @@ defmodule RDF.Graph do
`RDF.Graph` implements:
- Elixirs `Access` behaviour
- Elixirs `Enumerable` protocol
- Elixirs `Inspect` protocol
- Elixir's `Access` behaviour
- Elixir's `Enumerable` protocol
- Elixir's `Inspect` protocol
- the `RDF.Data` protocol
"""

View file

@ -128,7 +128,7 @@ defmodule RDF.List do
@doc """
The RDF nodes constituting a `RDF.List`` as an Elixir list.
The RDF nodes constituting a `RDF.List` as an Elixir list.
"""
def nodes(%RDF.List{} = list) do
Enum.map list, fn node_description -> node_description.subject end
@ -161,7 +161,7 @@ defmodule RDF.List do
or `rdf:rest`, we pragmatically require the usage of both.
Note: This function doesn't indicate if the list is valid.
See `new/2` and valid?/2` for validations.
See `new/2` and `valid?/2` for validations.
"""
def node?(list_node, graph)