From 532c4ee8f96a9d9386c2da09b254e1f31df6cc7a Mon Sep 17 00:00:00 2001 From: Michael Hunger Date: Tue, 1 Mar 2011 09:44:45 +0100 Subject: [PATCH] updated readme --- README.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) 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() {