Commit 5d08988d authored by Max Kellermann's avatar Max Kellermann Committed by Max Kellermann

lib/curl/Handler: fix typo

parent 47ca4246
/* /*
* Copyright 2008-2018 Max Kellermann <max.kellermann@gmail.com> * Copyright 2008-2021 Max Kellermann <max.kellermann@gmail.com>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
...@@ -64,14 +64,14 @@ public: ...@@ -64,14 +64,14 @@ public:
virtual void OnData(ConstBuffer<void> data) = 0; virtual void OnData(ConstBuffer<void> data) = 0;
/** /**
* The response has ended. The method is allowed delete the * The response has ended. The method is allowed to delete the
* #CurlRequest here. * #CurlRequest.
*/ */
virtual void OnEnd() = 0; virtual void OnEnd() = 0;
/** /**
* An error has occurred. The method is allowed delete the * An error has occurred. The method is allowed to delete the
* #CurlRequest here. * #CurlRequest.
*/ */
virtual void OnError(std::exception_ptr e) noexcept = 0; virtual void OnError(std::exception_ptr e) noexcept = 0;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment