Skip to content

Commit 6379061

Browse files
committed
Fix whitespace
1 parent 9588de6 commit 6379061

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Sources/HotKey/Key.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ public enum Key {
261261
case "rightarrow", "": self = .rightArrow
262262
case "downarrow", "": self = .downArrow
263263
case "uparrow", "": self = .upArrow
264-
case "section", "§": self = .section
264+
case "section", "§": self = .section
265265
default: return nil
266266
}
267267
}
@@ -381,11 +381,11 @@ public enum Key {
381381
case UInt32(kVK_RightArrow): self = .rightArrow
382382
case UInt32(kVK_DownArrow): self = .downArrow
383383
case UInt32(kVK_UpArrow): self = .upArrow
384-
case UInt32(kVK_ISO_Section): self = .section
384+
case UInt32(kVK_ISO_Section): self = .section
385385
default: return nil
386386
}
387387
}
388-
388+
389389
public var carbonKeyCode: UInt32 {
390390
switch self {
391391
case .a: return UInt32(kVK_ANSI_A)
@@ -501,7 +501,7 @@ public enum Key {
501501
case .rightArrow: return UInt32(kVK_RightArrow)
502502
case .downArrow: return UInt32(kVK_DownArrow)
503503
case .upArrow: return UInt32(kVK_UpArrow)
504-
case .section: return UInt32(kVK_ISO_Section)
504+
case .section: return UInt32(kVK_ISO_Section)
505505
}
506506
}
507507
}

0 commit comments

Comments
 (0)