[Bps-public-commit] r14747 - Prophet/trunk/lib/Prophet

jesse at bestpractical.com jesse at bestpractical.com
Mon Aug 4 01:59:09 EDT 2008


Author: jesse
Date: Mon Aug  4 01:59:09 2008
New Revision: 14747

Modified:
   Prophet/trunk/lib/Prophet/PropChange.pm

Log:
slight changes for propchange formatting


Modified: Prophet/trunk/lib/Prophet/PropChange.pm
==============================================================================
--- Prophet/trunk/lib/Prophet/PropChange.pm	(original)
+++ Prophet/trunk/lib/Prophet/PropChange.pm	Mon Aug  4 01:59:09 2008
@@ -48,13 +48,13 @@
     my $new  = $self->new_value;
 
     if (!defined($old)) {
-        return qq{Property "$name" was added, value "$new".};
+        return qq{+ "$name" set to "$new"};
     }
     elsif (!defined($new)) {
-        return qq{Property "$name" was removed, value was "$old".};
+        return qq{- "$name" "$old" deleted.};
     }
 
-    return qq{Property "$name" changed from "$old" to "$new".};
+    return qq{> "$name" changed from "$old" to "$new".};
 }
 
 __PACKAGE__->meta->make_immutable;



More information about the Bps-public-commit mailing list