From 041191eca1a2b11f4442f06138b0e4a4fe419ca2 Mon Sep 17 00:00:00 2001 From: Lalit Kumar Bhasin Date: Mon, 31 Aug 2020 11:42:05 +0000 Subject: [PATCH] fix indent --- api/include/opentelemetry/http/http_client.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/api/include/opentelemetry/http/http_client.h b/api/include/opentelemetry/http/http_client.h index d658178936..757c6dd3c5 100644 --- a/api/include/opentelemetry/http/http_client.h +++ b/api/include/opentelemetry/http/http_client.h @@ -100,12 +100,12 @@ class HttpResponse class HttpResponseCallback { public: - // Called when an HTTP request completes. - // The passed response object contains details about the exact way the - // request finished (HTTP status code, headers, content, error codes - // etc.). The ownership of the response object is transferred to the + // Called when an HTTP request completes. + // The passed response object contains details about the exact way the + // request finished (HTTP status code, headers, content, error codes + // etc.). The ownership of the response object is transferred to the // callback object. It can store it for later if necessary. Finally, it - // must be deleted using its virtual destructor. + // must be deleted using its virtual destructor. virtual void OnHttpResponse(HttpResponse* response) = 0; };