diff --git a/docs/ref/class-based-views.txt b/docs/ref/class-based-views.txt
index b3f6b19..c480f64 100644
a
|
b
|
MonthArchiveView
|
1213 | 1213 | * ``month``: A ``datetime.date`` object representing the given month. |
1214 | 1214 | |
1215 | 1215 | * ``next_month``: A ``datetime.date`` object representing the first day |
1216 | | of the next month. If the next month is in the future, this will be |
1217 | | ``None``. |
| 1216 | of the next month. If the next month is in the future or if there is no |
| 1217 | object in the future and ``allow_empty = False``, this will be ``None``. |
1218 | 1218 | |
1219 | 1219 | * ``previous_month``: A ``datetime.date`` object representing the first |
1220 | | day of the previous month. Unlike ``next_month``, this will never be |
1221 | | ``None``. |
| 1220 | day of the previous month. If there is no object in the past and |
| 1221 | ``allow_empty = False``, this will be ``None``. |
1222 | 1222 | |
1223 | 1223 | **Notes** |
1224 | 1224 | |