spelling fix

This commit is contained in:
Kevin G Christiano 2021-02-18 10:15:25 -05:00
parent d9af965aa8
commit cd72196755

View File

@ -36,7 +36,7 @@ import Foundation
//--------------------------------------------------
/// - parameter index: The index of the delimiter.
/// - returns: The delimiter for a given idenx. Defaults to whitespace for valid index if no delimiters is provided. If invalid index, emoty string.
/// - returns: The delimiter for a given index. Defaults to whitespace for valid index if no delimiters is provided. If invalid index, empty string.
public func delimiter(for index: Int) -> String {
guard index != components.count - 1 else { return "" }