diff --git a/README.md b/README.md index 2559d09a073eadd34f5e54d2e95940d4292a4e40..fd787b29a67ca57d6c6cd2a7ed0c8a5414048b63 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ with the Ferma engine. Ferma also supports any of the many databases compatible with TinkerPop including the following. + * [JanusGraph](http://janusgraph.org/) * [Titan](http://thinkaurelius.github.io/titan/) * [Neo4j](http://neo4j.com) * [OrientDB](http://www.orientechnologies.com/orientdb/) @@ -71,7 +72,7 @@ To include Ferma in your project of choice include the following Maven dependenc <version>3.2.1</version> </dependency> ``` - + ## Getting Started @@ -148,14 +149,14 @@ provide type resolution. Basically the type of object you use when adding to the reading from the graph. Say we extend the Person class with the Programmer class. - + ```java public class Programmer extends Person { } ``` - + Using simple mode will save the type of Java class the element was created with for use later: - + ```java public void testSimpleTyping() { Graph graph = TinkerGraph.open();