From 4450b7c62274bc08f21b94269e0316e2799afe90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B4=89=EA=B7=A0?= Date: Tue, 7 Jan 2025 11:26:40 +0900 Subject: [PATCH] fix typo --- .../OrderedDictionary/OrderedDictionary.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary.swift b/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary.swift index 2f13e942a..888746546 100644 --- a/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary.swift +++ b/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary.swift @@ -117,7 +117,7 @@ /// Because ordered dictionaries need to maintain unique keys, neither /// `OrderedDictionary` nor its `elements` view can conform to the full /// `MutableCollection` or `RangeReplaceableCollection` protocols. -/// However, `OrderedDictioanr` is still able to implement some of the +/// However, `OrderedDictionary` is still able to implement some of the /// requirements of these protocols. In particular, it supports permutation /// operations from `MutableCollection`: ///