From 2b0c85b235d7ee8d4915e419961a2b4850d6839e Mon Sep 17 00:00:00 2001 From: Mark Pollack Date: Fri, 3 Dec 2010 11:07:40 -0500 Subject: [PATCH] README updates. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index befba0317..9a1420175 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Future plans are to support optional logging and/or exception throwing based on * To simplify the creation of Data Repositories a generic Repository interface and base class is provided. Furthermore, Spring will automatically create a Repository implementation for you that add implementations of finder methods you specify on an interface. For example the Repository interface is - public interface Repository { +'public interface Repository {' T save(T entity); @@ -67,7 +67,7 @@ Future plans are to support optional logging and/or exception throwing based on void delete(Iterable entities); void deleteAll(); - } +'}' and there is a placeholder interface called MongoRepository that will in future add more Mongo specific methods.