@@ -178,7 +178,7 @@ private void invoke(String methodName, Object argument, OutputStream output, Str
178178 }
179179
180180 /**
181- * Reads a JSON-PRC response from the server. This blocks until
181+ * Reads a JSON-RPC response from the server. This blocks until
182182 * a response is received. If an id is given, responses that do
183183 * not correspond, are disregarded.
184184 *
@@ -310,7 +310,7 @@ private void internalWriteRequest(String methodName, Object arguments, OutputStr
310310 private JsonNode readResponseNode (ReadContext context ) throws IOException {
311311 context .assertReadable ();
312312 JsonNode response = context .nextValue ();
313- logger .debug ("JSON-PRC Response: {}" , response );
313+ logger .debug ("JSON-RPC Response: {}" , response );
314314 return response ;
315315 }
316316
@@ -504,7 +504,7 @@ public void invokeNotification(String methodName, Object argument, OutputStream
504504 }
505505
506506 /**
507- * Reads a JSON-PRC response from the server. This blocks until
507+ * Reads a JSON-RPC response from the server. This blocks until
508508 * a response is received.
509509 *
510510 * @param clazz the expected return type
@@ -519,7 +519,7 @@ public <T> T readResponse(Class<T> clazz, InputStream input) throws Throwable {
519519 }
520520
521521 /**
522- * Reads a JSON-PRC response from the server. This blocks until
522+ * Reads a JSON-RPC response from the server. This blocks until
523523 * a response is received.
524524 *
525525 * @param returnType the expected return type
@@ -532,7 +532,7 @@ public Object readResponse(Type returnType, InputStream input) throws Throwable
532532 }
533533
534534 /**
535- * Reads a JSON-PRC response from the server. This blocks until
535+ * Reads a JSON-RPC response from the server. This blocks until
536536 * a response is received. If an id is given, responses that do
537537 * not correspond, are disregarded.
538538 *
0 commit comments