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 ==========