From 3da13e885e60a3b55450a4381d3d6b0b613a215b Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Sat, 25 Mar 2017 17:40:27 +1300 Subject: [PATCH] Fix typo --- src/rpcserver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpcserver.h b/src/rpcserver.h index 56fe2542e..1124801c2 100644 --- a/src/rpcserver.h +++ b/src/rpcserver.h @@ -101,7 +101,7 @@ public: * RPC will call the function to create a timer that will call func in *millis* milliseconds. * @note As the RPC mechanism is backend-neutral, it can use different implementations of timers. * This is needed to cope with the case in which there is no HTTP server, but - * only GUI RPC console, and to break the dependency of pcserver on httprpc. + * only GUI RPC console, and to break the dependency of rpcserver on httprpc. */ virtual RPCTimerBase* NewTimer(boost::function& func, int64_t millis) = 0; };