From 82ee335a4891469d887a8a3dd953afadd6e65ab2 Mon Sep 17 00:00:00 2001 From: Takumi Muraishi Date: Sat, 17 Feb 2024 15:58:00 +0900 Subject: [PATCH] Fix typo in TestUtilities.swift (#223) --- Tests/SwiftAlgorithmsTests/TestUtilities.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/SwiftAlgorithmsTests/TestUtilities.swift b/Tests/SwiftAlgorithmsTests/TestUtilities.swift index 68870bba..fbd70bec 100644 --- a/Tests/SwiftAlgorithmsTests/TestUtilities.swift +++ b/Tests/SwiftAlgorithmsTests/TestUtilities.swift @@ -216,7 +216,7 @@ extension IndexValidator { /// - expectedCount: /// /// - Complexity: O(*n*^3) where *n* is the length of the collection if the - /// collection conforms to `RandomAccesCollection`, otherwise O(*n*^4). + /// collection conforms to `RandomAccessCollection`, otherwise O(*n*^4). func validate( _ collection: C, expectedCount: Int? = nil,