From 2f9ad91b4da9312b106aff1ad2eea57b5858739e Mon Sep 17 00:00:00 2001 From: vperus Date: Sat, 13 Jul 2019 21:17:52 +0300 Subject: [PATCH] Fixed typo --- src/JsonRpc/Server/Notification.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/JsonRpc/Server/Notification.cs b/src/JsonRpc/Server/Notification.cs index 71c9d3f81..1cb33333d 100644 --- a/src/JsonRpc/Server/Notification.cs +++ b/src/JsonRpc/Server/Notification.cs @@ -9,9 +9,9 @@ public class Notification : IMethodWithParams internal Notification( string method, JToken @params, - string protcolVersion) + string protocolVersion) { - ProtocolVersion = protcolVersion; + ProtocolVersion = protocolVersion; Method = method; Params = @params; }