From e437c4557c1dfe6d0711ebc68ac12a1467916917 Mon Sep 17 00:00:00 2001 From: Alfredo Delli Bovi Date: Sat, 5 Dec 2015 15:34:45 +0100 Subject: [PATCH] Fix typo in comments --- stdlib/public/core/Arrays.swift.gyb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/public/core/Arrays.swift.gyb b/stdlib/public/core/Arrays.swift.gyb index 31c83697f8c71..dbc618ae09dc7 100644 --- a/stdlib/public/core/Arrays.swift.gyb +++ b/stdlib/public/core/Arrays.swift.gyb @@ -140,7 +140,7 @@ if True: /// sequence of mutating operations causes elements to be copied into /// unique, contiguous storage which may cost `O(N)` time and space, /// where `N` is the length of the array (or more, if the underlying -/// `NSArray` is has unusual performance characteristics). +/// `NSArray` has unusual performance characteristics). /// /// Bridging to Objective-C /// -----------------------