Skip to content

Commit c4c585d

Browse files
committed
Dummy typo fix
1 parent 575e247 commit c4c585d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/CLTLogger.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public struct CLTLogger : LogHandler {
193193
#if swift(>=5.2) || !canImport(Darwin)
194194
_ = try? fh.write(contentsOf: data)
195195
#else
196-
/* Let’s write “manullay” (FileHandle’s write(_:) method throws an ObjC exception in case of an error).
196+
/* Let’s write “manually” (FileHandle’s write(_:) method throws an ObjC exception in case of an error).
197197
* This code is copied below. */
198198
data.withUnsafeBytes{ bytes in
199199
guard !bytes.isEmpty else {
@@ -210,7 +210,7 @@ public struct CLTLogger : LogHandler {
210210
}
211211
#endif
212212
} else {
213-
/* Let’s write “manullay” (FileHandle’s write(_:) method throws an ObjC exception in case of an error).
213+
/* Let’s write “manually” (FileHandle’s write(_:) method throws an ObjC exception in case of an error).
214214
* This is a copy of the code just above. */
215215
data.withUnsafeBytes{ bytes in
216216
guard !bytes.isEmpty else {

0 commit comments

Comments
 (0)