Skip to content

Commit

Permalink
Fixing documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexflav23 committed Jul 26, 2015
1 parent dcaa4f0 commit 6614eac
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions README.md
Expand Up @@ -6,6 +6,7 @@ Reactive type-safe Scala DSL for Neo4j
# Table of contents

<ol>
<li><a href="#getting-it">Getting it</a></li>
<li><a href="#graph-modelling">Graph modelling</a></li>
<li><a href="#nodes">Nodes</a></li>
<li><a href="#relationships">Relationships</a></li>
Expand All @@ -29,6 +30,15 @@ RETURN r



# Getting it

```scala
libraryDependencies ++= Seq(
"com.websudos" %% "reactiveneo-dsl" % "0.3.0",
"com.websudos" %% "reactiveneo-testing" % "0.3.0"
)
```

# Graph modelling
<a href="#table-of-contents">Back to top</a>

Expand Down
Expand Up @@ -100,7 +100,7 @@ class RestConnection(config: ClientConfiguration) {
object RestConnection {

def apply(host: String, port: Int): RestConnection = {
val config = ClientConfiguration("localhost", 7474, FiniteDuration(10, TimeUnit.SECONDS))
val config = ClientConfiguration(host, port, FiniteDuration(10, TimeUnit.SECONDS))
new RestConnection(config)
}

Expand Down

0 comments on commit 6614eac

Please sign in to comment.