From f20117727f1da4073903d089689bd6c63093d6a4 Mon Sep 17 00:00:00 2001 From: "ermin.zem" Date: Thu, 23 Feb 2023 10:58:41 +0800 Subject: [PATCH] chore: update IPCClient class comment --- src/vs/base/parts/ipc/common/ipc.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/base/parts/ipc/common/ipc.ts b/src/vs/base/parts/ipc/common/ipc.ts index 1d8c4a45efaf1..d71baaeeeb571 100644 --- a/src/vs/base/parts/ipc/common/ipc.ts +++ b/src/vs/base/parts/ipc/common/ipc.ts @@ -949,7 +949,7 @@ export class IPCServer implements IChannelServer, I * An `IPCClient` is both a channel client and a channel server. * * As the owner of a protocol, you should extend both this - * and the `IPCClient` classes to get IPC implementations + * and the `IPCServer` classes to get IPC implementations * for your protocol. */ export class IPCClient implements IChannelClient, IChannelServer, IDisposable {