# HG changeset patch # User Alain Mazy # Date 1626519894 -7200 # Node ID 00044831357a60e1b2f36e35f9e53183f6ca43e6 # Parent c95e4a1e65ed417994240a2f3416ee4bc9226cd4 fix doc diff -r c95e4a1e65ed -r 00044831357a OrthancServer/Plugins/Include/orthanc/OrthancCPlugin.h --- a/OrthancServer/Plugins/Include/orthanc/OrthancCPlugin.h Fri Jul 16 11:34:51 2021 +0200 +++ b/OrthancServer/Plugins/Include/orthanc/OrthancCPlugin.h Sat Jul 17 13:04:54 2021 +0200 @@ -7501,9 +7501,9 @@ * @param context The Orthanc plugin context, as received by OrthancPluginInitialize(). * @param pathRegularExpression Regular expression for the URI. May contain groups. * @param getHandler The callback function to handle REST calls using the GET HTTP method. - * @param postHandler The callback function to handle REST calls using the GET POST method. - * @param deleteHandler The callback function to handle REST calls using the GET DELETE method. - * @param putHandler The callback function to handle REST calls using the GET PUT method. + * @param postHandler The callback function to handle REST calls using the POST HTTP method. + * @param deleteHandler The callback function to handle REST calls using the DELETE HTTP method. + * @param putHandler The callback function to handle REST calls using the PUT HTTP method. * @param addChunk The callback invoked when a new chunk is available for the request body of a POST or PUT call. * @param execute The callback invoked once the entire body of a POST or PUT call is read. * @param finalize The callback invoked to release the resources associated with a POST or PUT call.