From 5d08988ddae807438f2177744031bcde5aecabc7 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 8 Dec 2021 19:41:37 +0100 Subject: [PATCH] lib/curl/Handler: fix typo --- src/lib/curl/Handler.hxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib/curl/Handler.hxx b/src/lib/curl/Handler.hxx index 1259c4b3a..14a928a80 100644 --- a/src/lib/curl/Handler.hxx +++ b/src/lib/curl/Handler.hxx @@ -1,5 +1,5 @@ /* - * Copyright 2008-2018 Max Kellermann + * Copyright 2008-2021 Max Kellermann * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -64,14 +64,14 @@ public: virtual void OnData(ConstBuffer data) = 0; /** - * The response has ended. The method is allowed delete the - * #CurlRequest here. + * The response has ended. The method is allowed to delete the + * #CurlRequest. */ virtual void OnEnd() = 0; /** - * An error has occurred. The method is allowed delete the - * #CurlRequest here. + * An error has occurred. The method is allowed to delete the + * #CurlRequest. */ virtual void OnError(std::exception_ptr e) noexcept = 0; };