mirror of
https://github.com/apple/sourcekit-lsp.git
synced 2026-03-02 18:23:24 +01:00
Fix typo: JSONRPCConnection should be spelled with two 'n'
This commit is contained in:
@@ -30,7 +30,7 @@ public final class BuildServerBuildSystem {
|
||||
let requestQueue: DispatchQueue
|
||||
|
||||
var handler: BuildServerHandler?
|
||||
var buildServer: JSONRPCConection?
|
||||
var buildServer: JSONRPCConnection?
|
||||
|
||||
public private(set) var indexDatabasePath: AbsolutePath?
|
||||
public private(set) var indexStorePath: AbsolutePath?
|
||||
@@ -239,11 +239,11 @@ struct BuildServerConfig: Codable {
|
||||
let argv: [String]
|
||||
}
|
||||
|
||||
private func makeJSONRPCBuildServer(client: MessageHandler, serverPath: AbsolutePath, serverFlags: [String]?) throws -> JSONRPCConection {
|
||||
private func makeJSONRPCBuildServer(client: MessageHandler, serverPath: AbsolutePath, serverFlags: [String]?) throws -> JSONRPCConnection {
|
||||
let clientToServer = Pipe()
|
||||
let serverToClient = Pipe()
|
||||
|
||||
let connection = JSONRPCConection(
|
||||
let connection = JSONRPCConnection(
|
||||
protocol: BuildServerProtocol.bspRegistry,
|
||||
inFD: serverToClient.fileHandleForReading.fileDescriptor,
|
||||
outFD: clientToServer.fileHandleForWriting.fileDescriptor
|
||||
|
||||
Reference in New Issue
Block a user