From f044851abb990c5d7e44e31897f28341d5a5b337 Mon Sep 17 00:00:00 2001 From: r4sas Date: Thu, 16 Feb 2017 16:29:08 +0300 Subject: [PATCH] fix typo --- Win32/Win32App.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Win32/Win32App.cpp b/Win32/Win32App.cpp index 5a447ad9..0aa5c6d6 100644 --- a/Win32/Win32App.cpp +++ b/Win32/Win32App.cpp @@ -143,7 +143,7 @@ namespace win32 s << "\n"; s << "Inbound: " << i2p::transport::transports.GetInBandwidth() / 1024 << " KiB/s; "; s << "Outbound: " << i2p::transport::transports.GetOutBandwidth() / 1024 << " KiB/s\n"; - s << "Recvieved: "; ShowTransfered (s, i2p::transport::transports.GetTotalReceivedBytes()); + s << "Received: "; ShowTransfered (s, i2p::transport::transports.GetTotalReceivedBytes()); s << "Sent: "; ShowTransfered (s, i2p::transport::transports.GetTotalSentBytes()); s << "\n"; s << "Routers: " << i2p::data::netdb.GetNumRouters () << "; ";