aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Schaefermeyer <michael.schaefermeyer@gmail.com>2016-07-19 01:13:59 +0200
committerMichael Schaefermeyer <michael.schaefermeyer@gmail.com>2016-07-19 01:13:59 +0200
commit1678263715462aed9e03432b90a1f173284afb42 (patch)
tree135bc572afff5222fb7f7a2156d57c52308f5f79
parent80ed6275f35703690f26300587f497f28b488c40 (diff)
downloadboltex-1678263715462aed9e03432b90a1f173284afb42.tar.gz
boltex-1678263715462aed9e03432b90a1f173284afb42.tar.xz
Fix typos
-rw-r--r--lib/boltex/bolt.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/boltex/bolt.ex b/lib/boltex/bolt.ex
index dc0c04d..2e7f6b5 100644
--- a/lib/boltex/bolt.ex
+++ b/lib/boltex/bolt.ex
@@ -109,7 +109,7 @@ defmodule Boltex.Bolt do
end
@doc """
- Runs a statement (most like Cypher statement) and returns a list of the
+ Runs a statement (most likely Cypher statement) and returns a list of the
records and a summary.
Records are represented using PackStream's record data type. Their Elixir
@@ -119,7 +119,7 @@ defmodule Boltex.Bolt do
iex> Boltex.Bolt.run_statement("MATCH (n) RETURN n")
[
- {:record, [sig: 1, fields: [1, "Exmaple", "Labels", %{"some_attribute" => "some_value"},
+ {:record, [sig: 1, fields: [1, "Exmaple", "Labels", %{"some_attribute" => "some_value"}]]},
{:success, %{"type" => "r"}}
]
"""