From 115cdca9338c2565baad881789ee01c8a002a164 Mon Sep 17 00:00:00 2001 From: Carl Meyer Date: Fri, 16 Apr 2010 09:31:55 -0400 Subject: [PATCH] README tweaks --- README.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 5ef04c6..5501c34 100644 --- a/README.rst +++ b/README.rst @@ -91,8 +91,10 @@ field changes:: STATUS = Choices('draft', 'published') status = StatusField() - status_changed = models.MonitorField(monitor='status') - + status_changed = MonitorField(monitor='status') + +(A ``MonitorField`` can monitor any type of field for changes, not only a +``StatusField``.) SplitField ==========