From 680591632f45e0054798e125cdea2836705f9237 Mon Sep 17 00:00:00 2001 From: Eduardo Scartezini Correia Carvalho <6571122+scartezini@users.noreply.github.com> Date: Wed, 7 Aug 2019 03:30:17 -0300 Subject: [PATCH] Documentation Fix (#2703) in the example there is an undeclared variable, this commit fix it. --- Net/include/Poco/Net/HTTPCredentials.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Net/include/Poco/Net/HTTPCredentials.h b/Net/include/Poco/Net/HTTPCredentials.h index 66a6e03c1..67c9848c9 100644 --- a/Net/include/Poco/Net/HTTPCredentials.h +++ b/Net/include/Poco/Net/HTTPCredentials.h @@ -49,7 +49,7 @@ class Net_API HTTPCredentials /// Poco::Net::HTTPClientSession session("pocoproject.org"); /// Poco::Net::HTTPRequest request(HTTPRequest::HTTP_GET, "/index.html", HTTPMessage::HTTP_1_1); /// session.sendRequest(request); - /// Poco::Net::HTTPResponse; + /// Poco::Net::HTTPResponse response; /// std::istream& istr = session.receiveResponse(response); /// /// If the server responds with a 401 status, authenticate the