From bc988fa978bf166314c271fb6f51560f1ef558b9 Mon Sep 17 00:00:00 2001 From: ecederstrand Date: Wed, 5 Jun 2024 13:02:32 +0200 Subject: [PATCH] docs: fix typos --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e320bffb..a91d448b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ HEAD 5.3.0 ----- - Fix various issues related to public folders and archive folders -- Support read-write for ``Contact.im_addresses` +- Support read-write for `Contact.im_addresses` - Improve reporting of inbox rule validation errors @@ -857,7 +857,7 @@ shared_calendar = SingleFolderQuerySet( - Removed `fetch(.., with_extra=True)` in favor of the more fine-grained `fetch(.., only_fields=[...])` - Added a `QuerySet` class that supports QuerySet-returning methods `filter()`, `exclude()`, `only()`, `order_by()`, - `reverse()``values()` and `values_list()` that all allow for chaining. `QuerySet` also has methods `iterator()` + `reverse()`, `values()` and `values_list()` that all allow for chaining. `QuerySet` also has methods `iterator()` , `get()`, `count()`, `exists()` and `delete()`. All these methods behave like their counterparts in Django.