diff --git a/README.md b/README.md index bb55aa8ae..908a16dcf 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ For more detailed questions, use the [forum](http://forum.springsource.org/forum * Configure Spring Data Graph for Neo4j in your application using the provided xml namespace. + reachableByRocket; public World( String name, int moons ) { @@ -84,7 +83,7 @@ For more detailed questions, use the [forum](http://forum.springsource.org/forum public int getMoons() { return moons; } public void addRocketRouteTo( World otherWorld ) { - reachableByRocket.add(otherWorld) + reachableByRocket.add(otherWorld); } public boolean canBeReachedFrom( World otherWorld ) { @@ -109,10 +108,9 @@ For more detailed questions, use the [forum](http://forum.springsource.org/forum mars.addRocketRouteTo( earth ); return Arrays.asList( - new World( "Mercury", 0 ), new World( "Venus", 0 ) , - earth, mars, - new World( "Jupiter", 63 ), new World( "Saturn", 62 ) , - new World( "Uranus", 27 ) , new World( "Neptune", 13 ) ); + new World( "Mercury", 0 ), new World( "Venus", 0 ), earth, mars, + new World( "Jupiter", 63 ), new World( "Saturn", 62 ), + new World( "Uranus", 27 ), new World( "Neptune", 13 )); } private NodeFinder finder() {