aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"}}
]
"""