From fc0815f9f6cf5f9bd53af13df2bb16e4e0927fbe Mon Sep 17 00:00:00 2001 From: Tae Won Ha Date: Sun, 5 Jul 2020 20:21:48 +0200 Subject: [PATCH] Reformat --- RxPack/RxNeovimApi.swift | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/RxPack/RxNeovimApi.swift b/RxPack/RxNeovimApi.swift index 79609961..9e011851 100644 --- a/RxPack/RxNeovimApi.swift +++ b/RxPack/RxNeovimApi.swift @@ -7,15 +7,12 @@ import Foundation import RxSwift public final class RxNeovimApi { - public enum Event { - case error(msg: String) } public struct Buffer: Equatable { - - public static func ==(lhs: Buffer, rhs: Buffer) -> Bool { lhs.handle == rhs.handle } + public static func == (lhs: Buffer, rhs: Buffer) -> Bool { lhs.handle == rhs.handle } public let handle: Int @@ -23,8 +20,7 @@ public final class RxNeovimApi { } public struct Window: Equatable { - - public static func ==(lhs: Window, rhs: Window) -> Bool { lhs.handle == rhs.handle } + public static func == (lhs: Window, rhs: Window) -> Bool { lhs.handle == rhs.handle } public let handle: Int @@ -32,8 +28,7 @@ public final class RxNeovimApi { } public struct Tabpage: Equatable { - - public static func ==(lhs: Tabpage, rhs: Tabpage) -> Bool { lhs.handle == rhs.handle } + public static func == (lhs: Tabpage, rhs: Tabpage) -> Bool { lhs.handle == rhs.handle } public let handle: Int