From 9340734140cadb9d630efa16f2113d09c06d8b2b Mon Sep 17 00:00:00 2001 From: db0 Date: Sat, 24 Jun 2023 03:06:17 +0200 Subject: [PATCH] doc: wrong api header --- fediseer/apis/v1/guarantees.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fediseer/apis/v1/guarantees.py b/fediseer/apis/v1/guarantees.py index 3cfd2fd..7c5928f 100644 --- a/fediseer/apis/v1/guarantees.py +++ b/fediseer/apis/v1/guarantees.py @@ -125,7 +125,7 @@ class Guarantees(Resource): delete_parser.add_argument("Client-Agent", default="unknown:0:unknown", type=str, required=False, help="The client name and version.", location="headers") @api.expect(delete_parser) - @api.marshal_with(models.response_model_simple_response, code=200, description='Withdraw Instance Endorsement') + @api.marshal_with(models.response_model_simple_response, code=200, description='Withdraw Instance Guarantee') @api.response(400, 'Bad Request', models.response_model_error) @api.response(401, 'Invalid API Key', models.response_model_error) @api.response(404, 'Instance not registered', models.response_model_error)