From cc754cc5e1ff9d45268340f2699f1ccbb27c2d45 Mon Sep 17 00:00:00 2001 From: Kuba Sunderland-Ober Date: Sat, 9 May 2026 13:24:52 +0200 Subject: [PATCH] Fix default KeyCompareMode. --- docs/Reference/Modules/Collection/KeyCompareMode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Reference/Modules/Collection/KeyCompareMode.md b/docs/Reference/Modules/Collection/KeyCompareMode.md index 067de2a..022d6ff 100644 --- a/docs/Reference/Modules/Collection/KeyCompareMode.md +++ b/docs/Reference/Modules/Collection/KeyCompareMode.md @@ -29,7 +29,7 @@ The *compare* argument settings are: > > **KeyCompareMode** is a twinBASIC extension; the classic VBA **Collection** object always uses case-insensitive comparison and does not expose this property. -The default comparison mode is **vbBinaryCompare**. Changing the comparison mode rehashes the existing keys, so for large collections it is most efficient to set **KeyCompareMode** before adding items. +The default comparison mode is **vbTextCompare**. Changing the comparison mode rehashes the existing keys, so for large collections it is most efficient to set **KeyCompareMode** before adding items. ### Example