From e0eb4f2af76a249ed6aef1902ffdc3df7f3a659c Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Wed, 23 Jun 2010 11:54:41 +0100 Subject: [PATCH] Remove redundant text. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a3e70e6..247c3738 100644 --- a/README.md +++ b/README.md @@ -222,7 +222,7 @@ Remember to add those extra columns to your `versions` table ;) ## Diffing Versions -When you're storing every version of an object, as PaperTrail lets you do, you're almost certainly going to want to diff those versions against each other. However I haven't built a diff method into PaperTrail because I think diffing is best left to dedicated libraries, and also it's hard to come up with a diff method to suit all the different possible use cases. +When you're storing every version of an object, as PaperTrail lets you do, you're almost certainly going to want to diff those versions against each other. However I haven't built a diff method into PaperTrail because I think diffing is best left to dedicated libraries, and also it's hard to come up with a diff method to suit all the use cases. You might be surprised that PaperTrail doesn't use diffs internally anyway. When I designed PaperTrail I wanted simplicity and robustness so I decided to make each version of an object self-contained. A version stores all of its object's data, not a diff from the previous version.