diff --git a/README.textile b/README.textile
index 1fb0f2311..5fae5730f 100644
--- a/README.textile
+++ b/README.textile
@@ -6,70 +6,78 @@ The Spring Data Graph project provides a simplified POJO based programming model
h2. Maven configuration
-* Add the maven repository and dependency
+* Add the maven repository and dependency:
-* Configure AspectJ: Add the following plugin XML to your project's config in pom.xml to hook AspectJ into the build process:
+* Configure AspectJ: Include the following plugin XML in your pom.xml to hook AspectJ into the build process:
h2. Spring configuration
-* Configure Spring Data Graph for Neo4j in your application using the provided xml namespace.
+* Configure Spring Data Graph for Neo4j in your application using the provided XML namespace:
diff --git a/pom.xml b/pom.xml
index 8b147f149..6a50144f0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -122,6 +122,10 @@
spring-site-stagingfile:///${java.io.tmpdir}/spring-data/data-graph/docs/${project.version}
+
spring-milestone-stagingfile:///${java.io.tmpdir}/spring-data/data-graph/milestone
@@ -140,6 +144,11 @@
static.springframework.orgscp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-data/data-graph/snapshot-site/
+
spring-milestoneSpring Milestone Repository
diff --git a/src/docbkx/reference/programming-model/relationships.xml b/src/docbkx/reference/programming-model/relationships.xml
index 4f89d62ec..5e976aba4 100644
--- a/src/docbkx/reference/programming-model/relationships.xml
+++ b/src/docbkx/reference/programming-model/relationships.xml
@@ -60,10 +60,19 @@ public class Actor {
relationship of a given type between any two given entities.
+
+ Before an entity has been attached with persist() for the first time, it will
+ not have its state managed by Spring Data Graph. For example, given the Actor class defined above,
+ if actor.movies was accessed in a non-persisted entity, it would return
+ null, whereas if it was accessed in a persisted entity, it would return
+ an empty managed set.
+
+
+
By setting direction to BOTH, relationships are created in the outgoing direction, but when the
1:N field is read, it will include relationships in both directions. A cardinality of M:N is
not necessary because relationships can be navigated in both directions.
-
+
The relationships can also be accessed by using the aspect-introduced methods
entity.getRelationshipTo(target, type) and
diff --git a/src/docbkx/resources/css/html.css b/src/docbkx/resources/css/html.css
index 10936f337..994a3acfb 100644
--- a/src/docbkx/resources/css/html.css
+++ b/src/docbkx/resources/css/html.css
@@ -1,3 +1,5 @@
+@IMPORT url("highlight.css");
+
body {
text-align: justify;
margin-right: 2em;